Skip to content

build(deps): bump actions/setup-node from 6.2.0 to 6.3.0 #209

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

build(deps): bump actions/setup-node from 6.2.0 to 6.3.0 #209

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, next]
permissions:
contents: read
jobs:
build:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 23]
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@5ef0c079ce82195b2a36a210272d6b661572d83e # v2.14.2
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm run test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
token: ${{ secrets.CODECOV_TOKEN }}