-
Notifications
You must be signed in to change notification settings - Fork 5
92 lines (79 loc) · 2.31 KB
/
pr.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: PR
on:
pull_request:
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]
- uses: EndBug/add-and-commit@v7
if: ${{ failure() && github.actor == 'renovate' }}
build:
runs-on: ubuntu-latest
steps:
- uses: umidbekk/actions/prepare-node-repo@v2
with:
cache-key: yarn-v4
node-version: 18
- uses: superdispatch/actions/build-size/limit@v1
with:
install_command: 'yarn install'
build_command: 'yarn build'
preview:
runs-on: ubuntu-latest
outputs:
deploy-url: ${{ steps.deploy.outputs.details_url }}
steps:
- uses: umidbekk/actions/prepare-node-repo@v2
with:
cache-key: yarn-v4
node-version: 18
- run: yarn storybook:build
- run: yarn playroom:build
- id: deploy
uses: FirebaseExtended/action-hosting-deploy@v0
with:
target: superdispatch-ui
channelId: ${{ github.event.number }}
repoToken: ${{ secrets.GITHUB_TOKEN }}
projectId: ${{ secrets.FIREBASE_PROJECT }}
firebaseServiceAccount: ${{ secrets.FIREBASE_HOSTING_SERVICE_ACCOUNT_JSON }}
firebaseToolsVersion: '12.9.1'
e2e:
needs:
- checks
- preview
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: umidbekk/actions/npm/install@v2
with:
cache-key: yarn-v4
node-version: 18
- run: yarn cypress install
- run: yarn cypress run
env:
CYPRESS_HOST: ${{ needs.preview.outputs.deploy-url }}
visual-testing:
needs:
- checks
- preview
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
- uses: umidbekk/actions/npm/install@v2
with:
cache-key: yarn-v4
node-version: 18
- uses: superdispatch/actions/[email protected]
with:
command: yarn test-visual-ci ${{ needs.preview.outputs.deploy-url }}
update-command: yarn visual-update-ci ${{ needs.preview.outputs.deploy-url }}