-
Notifications
You must be signed in to change notification settings - Fork 1
143 lines (143 loc) · 5.6 KB
/
pull-request.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: pull-request
on:
pull_request:
branches:
- master
jobs:
build:
name: Test on node ${{matrix.node}} and ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
node:
- 20
- 22
os:
#- macos-latest
- ubuntu-latest
#- windows-latest
env:
#PLAYWRIGHT_BROWSERS_PATH: ./cache/playwright
YARN_NODE_LINKER: pnp
steps:
- name: Checkout
uses: actions/[email protected]
with:
# awaiting https://github.com/facebook/jest/issues/11271
fetch-depth: 0
#lfs: true
# awaiting https://github.com/actions/checkout/issues/317
ref: ${{github.event.pull_request.head.ref}}
- name: Git LFS Hashes
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-hashes
- name: Restore Git LFS Cache
uses: actions/cache/[email protected]
id: lfs-cache
with:
path: .git/lfs
key: ${{matrix.os}}-lfs-${{hashFiles('.lfs-hashes')}}
restore-keys: |
${{matrix.os}}-lfs-
- name: Pull Git LFS
run: git lfs pull
- name: Setup Node@${{matrix.node}}
uses: actions/[email protected]
with:
node-version: ${{matrix.node}}
# awaiting https://github.com/actions/checkout/pull/155
- name: Fetch Base Branch
run: git -c protocol.version=2 fetch --no-recurse-submodules --no-tags --progress --prune origin ${{github.event.pull_request.base.ref}}:${{github.event.pull_request.base.ref}}
- name: Yarn Cache Directory
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Restore Yarn Cache
uses: actions/cache/[email protected]
id: yarn-cache
with:
path: |
${{steps.yarn-cache-dir-path.outputs.dir}}
.yarn/install-state.gz
.yarn/unplugged
key: ${{matrix.os}}-${{matrix.node}}-yarn-${{hashFiles('**/yarn.lock')}}
restore-keys: |
${{matrix.os}}-${{matrix.node}}-yarn-
- name: Install Dependencies
run: yarn install --immutable
- name: Constraints
run: yarn constraints
- name: Restore TypeScript Cache
uses: actions/cache/[email protected]
id: typescript-cache
with:
path: "**/build"
key: ${{matrix.os}}-${{matrix.node}}-typescript-${{github.sha}}
restore-keys: |
${{matrix.os}}-${{matrix.node}}-typescript-
- name: Compile
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --topological-dev --verbose run compile
- name: Restore Jest Cache
uses: actions/cache/[email protected]
id: jest-cache
with:
path: "**/cache/jest"
key: ${{matrix.os}}-${{matrix.node}}-jest-${{github.sha}}
restore-keys: |
${{matrix.os}}-${{matrix.node}}-jest-
- name: Unit Test
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run test:ci:branch
- name: Restore ESLint Cache
uses: actions/cache/[email protected]
id: eslint-cache
with:
path: "**/.eslintcache"
key: ${{matrix.os}}-${{matrix.node}}-eslint-${{github.sha}}
restore-keys: |
${{matrix.os}}-${{matrix.node}}-eslint-
- name: Lint
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run lint:diff
- name: Restore Prettier Cache
uses: actions/cache/[email protected]
id: prettier-cache
with:
path: "**/.yarn/.cache/prettier"
key: ${{matrix.os}}-${{matrix.node}}-prettier-${{github.sha}}
restore-keys: |
${{matrix.os}}-${{matrix.node}}-prettier-
- name: Format
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run format:diff:check
- name: Restore Webpack Cache
uses: actions/cache/[email protected]
id: webpack-cache
with:
path: "**/.yarn/.cache/webpack"
key: ${{matrix.os}}-${{matrix.node}}-webpack-${{github.sha}}
restore-keys: |
${{matrix.os}}-${{matrix.node}}-webpack-
- name: Build
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --topological-dev --verbose run build
- name: Bundle Size
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run bundlesize
#- name: Date (YYYYMM)
# id: date
# run: echo "::set-output name=date::$(/bin/date -u "+%Y%m")"
#- name: Restore Playwright Cache
# uses: actions/cache/[email protected]
# id: playwright-cache
# with:
# path: ${{env.PLAYWRIGHT_BROWSERS_PATH}}
# key: ${{matrix.os}}-${{matrix.node}}-playwright-${{steps.date.outputs.date}}
- name: Playwright
id: playwright
run: |
yarn dlx playwright install --with-deps
yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run playwright:branch
- name: Upload Playwright Artifacts
uses: actions/[email protected]
if: steps.playwright.outcome == 'failure'
with:
name: ${{matrix.os}}-${{matrix.node}}-playwright
path: ${{github.workspace}}/**/playwright/report/
retention-days: 5
- name: Lint Commits
run: yarn commitlint --from="${{github.event.pull_request.base.ref}}"
timeout-minutes: 15