Replace dependency npm-run-all with npm-run-all2 5.0.0 #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint and test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint ESLint | |
run: yarn lint:eslint | |
- name: Lint Prettier | |
run: yarn lint:prettier | |
- name: TypeCheck | |
run: yarn typecheck | |
- name: Test | |
run: yarn test |