Skip to content

ci: bump @types/node from 22.7.5 to 22.7.6 #193

ci: bump @types/node from 22.7.5 to 22.7.6

ci: bump @types/node from 22.7.5 to 22.7.6 #193

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: ${{ github.event.pull_request.commits }}+1
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Install Dependencies
run: npm install
- run: npm run lint
- name: Run commitlint
run: npx commitlint --last --verbose
- name: Run tests
run: npm test