Skip to content

ci: update workflow actions #11

ci: update workflow actions

ci: update workflow actions #11

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
# Cancel in-progress runs for the same branch/PR to avoid wasting CI minutes.
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: 'npm ci'
- name: Run lint
run: 'npm run lint'
- name: Run typecheck
run: 'npm run typecheck'
- name: Run tests
run: 'npm test'
- name: Run build
run: 'npm run build'