-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 958 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: CI
on: [push]
jobs:
javascript-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # 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