Skip to content

Bump actions/checkout from 6.0.2 to 7.0.0 in the actions group across 1 directory #428

Bump actions/checkout from 6.0.2 to 7.0.0 in the actions group across 1 directory

Bump actions/checkout from 6.0.2 to 7.0.0 in the actions group across 1 directory #428

Workflow file for this run

name: Node.js CI
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '22'
- name: NPM Install
run: if [ -e package-lock.json ]; then npm ci; else npm i; fi
- name: Run eslint linter
run: npx eslint --max-warnings 0 .
- name: Run TypeScript compiler
run: npx tsc
- name: Run Prettier code style checks
run: npx prettier -c .