-
Notifications
You must be signed in to change notification settings - Fork 5
46 lines (37 loc) · 1.17 KB
/
stalker-app-tests.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
38
39
40
41
42
43
44
45
46
name: Red Kite App
on:
pull_request:
paths:
- .github/workflows/frontend.yml
- "packages/frontend/stalker-app/**"
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
# FIXME: When we get rid of flex-layout and update the color picker, then we can remove legacy peer-deps.
- run: yarn install --immutable
working-directory: packages/frontend/stalker-app
- run: npm run test:cicd
working-directory: packages/frontend/stalker-app
prod-build:
name: Production Build
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
# FIXME: When we get rid of flex-layout and update the color picker, then we can remove legacy peer-deps.
- run: yarn install --immutable
working-directory: packages/frontend/stalker-app
- run: npm run build --prod
working-directory: packages/frontend/stalker-app