Skip to content

chore(deps): bump actions/checkout from 5.0.1 to 6.0.2 #2

chore(deps): bump actions/checkout from 5.0.1 to 6.0.2

chore(deps): bump actions/checkout from 5.0.1 to 6.0.2 #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Typecheck, test, build, and pack
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Build
run: npm run build
- name: Check package contents
run: npm pack --dry-run