Skip to content

Bump actions/setup-node from 5.0.0 to 6.0.0 #2326

Bump actions/setup-node from 5.0.0 to 6.0.0

Bump actions/setup-node from 5.0.0 to 6.0.0 #2326

Workflow file for this run

name: GitHub CI
on:
push:
branches:
- v4
pull_request:
branches:
- v4
# No permissions are required for this workflow
permissions: {}
jobs:
test:
name: General checks, tests and coverage reporting
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- name: Use Node.js LTS 20.11.0
uses: actions/[email protected]
with:
node-version: 20.11.0
- name: Install dependencies
run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
- name: Perform checks and tests
run: npm test
- name: Send report to Coveralls
uses: coverallsapp/[email protected]