-
Notifications
You must be signed in to change notification settings - Fork 5
75 lines (64 loc) · 1.61 KB
/
main.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Main
on:
push:
branches:
- main
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: umidbekk/actions/prepare-node-repo@v2
with:
cache-key: yarn-v4
node-version: 18
- run: yarn check:types
- run: yarn lint
- run: yarn test
- uses: codecov/[email protected]
- run: yarn build
docs:
runs-on: ubuntu-latest
steps:
- uses: umidbekk/actions/prepare-node-repo@v2
with:
cache-key: yarn-v4
node-version: 18
- run: yarn docs
- id: deploy
uses: FirebaseExtended/action-hosting-deploy@v0
with:
channelId: live
target: superdispatch-ui
projectId: ${{ secrets.FIREBASE_PROJECT }}
firebaseServiceAccount: ${{ secrets.FIREBASE_HOSTING_SERVICE_ACCOUNT_JSON }}
firebaseToolsVersion: '12.9.1'
e2e:
needs:
- checks
- docs
runs-on: ubuntu-latest
steps:
- uses: umidbekk/actions/prepare-node-repo@v2
with:
cache-key: yarn-v4
node-version: 18
- run: yarn cypress install
- run: yarn cypress run
env:
CYPRESS_HOST: https://ui.superdispatch.org
visual-testing:
needs:
- checks
- docs
runs-on: ubuntu-latest
steps:
- uses: umidbekk/actions/prepare-node-repo@v2
with:
cache-key: yarn-v4
node-version: 18
- run: yarn test-visual-ci https://ui.superdispatch.org
- if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: visual-tests
path: .loki