Skip to content

Bump actions/checkout from 4.2.2 to 6.0.2 #1067

Bump actions/checkout from 4.2.2 to 6.0.2

Bump actions/checkout from 4.2.2 to 6.0.2 #1067

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
defaults:
run:
working-directory: ./web
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
- name: Find any lock file
run: if test -f ../yarn.lock || test -f ../pnpm-lock.yaml || test -f ../package-lock.json; then echo "Please don't commit lock files" && exit 1; fi
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --ignore-engines
- name: Build FE for production test
working-directory: ./web/frontend
run: yarn install --ignore-engines && yarn build