chore(deps): update dependency @types/node to v20.17.6 #1430
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: Typecheck and Lint | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
jobs: | |
Analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Merge config files | |
run: npm run merge-config | |
- name: Run Type Checking | |
run: npm run typecheck | |
- name: Typecheck and Lint | |
run: npm run lint |