Skip to content

build(deps): bump actions/setup-node from 6.2.0 to 6.4.0 #83

build(deps): bump actions/setup-node from 6.2.0 to 6.4.0

build(deps): bump actions/setup-node from 6.2.0 to 6.4.0 #83

Workflow file for this run

name: Build task
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
Build:
permissions:
contents: read # for actions/checkout to fetch code
runs-on: macos-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set Node.JS
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24.x
- name: npm install
run: npm install
- name: Build
run: npm run build
- name: Run tests
run: npm run test
- name: Run Prettier
run: npm run format-check
- name: Lint
run: npm run lint