Skip to content

chore(deps-dev): bump @types/node from 22.9.0 to 22.10.5 #801

chore(deps-dev): bump @types/node from 22.9.0 to 22.10.5

chore(deps-dev): bump @types/node from 22.9.0 to 22.10.5 #801

Workflow file for this run

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