Skip to content

Update actions/setup-node digest to 1d0ff46 #245

Update actions/setup-node digest to 1d0ff46

Update actions/setup-node digest to 1d0ff46 #245

Workflow file for this run

name: CI
on: [push]
jobs:
javascript-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
with:
node-version: "^22"
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Format
run: yarn run fmt-check
- name: Lints
run: yarn run lint-check
# do build before typecheck. See https://github.com/vercel/next.js/issues/53959#issuecomment-1735563224
- name: Build
run: yarn build
env:
NODE_ENV: production
NEXT_PUBLIC_UE_API_BASE_URL: "http://ue.test.local:9080"
- name: Typecheck
run: yarn typecheck
- name: Tests
run: yarn test
env:
CODECOV: true
NODE_ENV: test