chore(deps): replace dependency npm-run-all with npm-run-all2 ^5.0.0 … #207
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: Node.js CI | |
on: | |
push: | |
branches: [master] | |
paths: | |
- "frontend/**" | |
- ".github/workflows/node.yml" | |
pull_request: | |
branches: [master] | |
paths: | |
- "frontend/**" | |
- ".github/workflows/node.yml" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./frontend | |
strategy: | |
matrix: | |
node-version: | |
- 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
cache-dependency-path: frontend/package-lock.json | |
- name: Install npm dependencies | |
run: npm install | |
- name: Run tests | |
run: npm run test:unit -- --run | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./frontend | |
strategy: | |
matrix: | |
node-version: | |
- 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
cache-dependency-path: frontend/package-lock.json | |
- name: Install npm dependencies | |
run: npm install | |
- name: Run type-check | |
run: npm run type-check | |
- name: Run ESLint | |
run: NODE_ENV=production npx eslint |