Skip to content

chore(deps): update actions/checkout digest to df4cb1c #485

chore(deps): update actions/checkout digest to df4cb1c

chore(deps): update actions/checkout digest to df4cb1c #485

Workflow file for this run

name: CI
on:
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
name: 'Lint: node-24, ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
fetch-depth: 0
- name: Set node version to 24
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
with:
node-version: 24.12.0
- name: Install deps
run: npm install
- name: Lint
run: npm run lint
format:
runs-on: ubuntu-latest
timeout-minutes: 5
name: 'Format: node-24, ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
fetch-depth: 0
- name: Set node version to 24
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
with:
node-version: 24.12.0
- name: Install deps
run: npm install
- name: Format
run: npx prettier src --check
ts-check-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
name: 'TS-Check Tests: node-24, ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
fetch-depth: 0
- name: Set node version to 24
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
with:
node-version: 24.12.0
- name: Install deps
run: npm install
- name: Check tests
run: npx tsc --noEmit