Skip to content

github-action: bump actions/setup-node from 4.0.2 to 4.0.3 #6695

github-action: bump actions/setup-node from 4.0.2 to 4.0.3

github-action: bump actions/setup-node from 4.0.2 to 4.0.3 #6695

Workflow file for this run

---
name: pr-tests
on: pull_request
jobs:
test:
name: Run tests
runs-on: ubuntu-22.04
env:
NODE_ENV: development
TEST_TIMEOUT: 60000
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
with:
node-version-file: "package.json"
- run: npm ci
- name: Build
run: npm run build
- name: Test - Unit
run: npm run test:unit
- name: Lint
run: npm run lint