chore(deps-dev): bump @types/node from 22.9.0 to 22.10.5 #801
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: Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
Integration: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.11.0] | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Force npm version | |
run: npm install -g npm@9.6.7 | |
- name: Install dependencies | |
run: npm install | |
- name: Check formatting | |
run: npm run prettier:check | |
- name: Check code style | |
run: npm run lint | |
- name: Build project | |
run: npm run build | |
- name: Run unit tests | |
run: npm run test |