Skip to content

Refactor/fix: rework server to send a response back and run rest of command work async #51

Refactor/fix: rework server to send a response back and run rest of command work async

Refactor/fix: rework server to send a response back and run rest of command work async #51

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install Node.js dependencies
run: npm ci
- name: Copy environment file
run: cp .example.dev.vars .dev.vars
- name: Generate types
run: npm run build:generate-types
- name: Run format
run: npm run format
# TODO: remove once lint-action supports eslint v9
- name: Run eslint
run: npm run lint