Update dependency @types/node to v22.10.7 #48
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: Default | |
on: | |
- push | |
jobs: | |
testAndBuild: | |
name: Run all linters, tests and run the build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Run ESLint | |
run: npm run lint | |
- name: Check Formatting | |
run: npm run format:check | |
- name: Run Tests | |
run: npm run test | |
- name: Run Build | |
run: npm run build |