Skip to content

Bump @types/node from 22.15.30 to 24.2.1 #92

Bump @types/node from 22.15.30 to 24.2.1

Bump @types/node from 22.15.30 to 24.2.1 #92

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Typecheck
run: npm run tsc
- name: Check Format
id: npm-format-check
run: npm run format:check
- name: Lint
id: npm-lint
run: npm run lint
- name: Test
id: npm-test
run: npm run test
- name: Workflow timer
uses: './'
continue-on-error: true