Skip to content

chore(deps-dev): bump tsx from 4.21.0 to 4.22.4 in the development group across 1 directory #6

chore(deps-dev): bump tsx from 4.21.0 to 4.22.4 in the development group across 1 directory

chore(deps-dev): bump tsx from 4.21.0 to 4.22.4 in the development group across 1 directory #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
# Cancel superseded runs on the same ref.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build-test:
name: build & test (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ["22.12", "24"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Test
run: npm test