-
-
Notifications
You must be signed in to change notification settings - Fork 2
166 lines (161 loc) · 4.61 KB
/
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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
cache:
name: CI cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3.0.0
name: Install pnpm
with:
version: 7.11.0
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: "pnpm"
- name: Remove git auth
run: git config --unset http.https://github.com/.extraheader
- name: Install dependencies
run: pnpm i
lint:
name: lint
runs-on: ubuntu-latest
needs: cache
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3.0.0
name: Install pnpm
with:
version: 7.11.0
run_install: false
- uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: "pnpm"
- name: remove git auth
run: git config --unset http.https://github.com/.extraheader
- name: Install dependencies
run: pnpm i
- name: Lint
run: pnpm lint.ci
test:
name: Run tests
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [cache, lint]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3.0.0
name: Install pnpm
with:
version: 7.11.0
run_install: false
- uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: "pnpm"
- name: Install rimraf
run: npm i -g rimraf
- name: Install dependencies
run: pnpm i
- name: build
run: pnpm build
- name: Install Cypress
run: pnpm cypress install
- name: Run cypress tests
uses: cypress-io/github-action@ea45def9dfdc343c6d2c4e883ba4eac8af317c71
with:
install: true
command: pnpm test.ci
- name: Upload Cypress artifacts
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-report
path: |
cypress/report
cypress/screenshots
cypress/snapshots
cypress/logs
build-and-release:
if: ${{ github.actor != 'dependabot[bot]' }}
name: build and release
runs-on: ubuntu-latest
needs: [cache, lint, test]
steps:
- uses: actions/checkout@v4
with:
# pulls all commits (needed for lerna / semantic release to correctly version)
fetch-depth: "0"
- name: Setup git user
run: |
git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)"
git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)"
- uses: pnpm/action-setup@v3.0.0
name: Install pnpm
with:
version: 7.11.0
run_install: false
- uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: "pnpm"
- name: Install rimraf
run: npm i -g rimraf
- name: remove git auth
run: git config --unset http.https://github.com/.extraheader
- name: Install dependencies
run: pnpm i
- name: Authenticate with Registry
run: |
echo "registry=http://registry.npmjs.org/" >> .npmrc
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
npm whoami
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: build
run: pnpm build
- name: release package
if: ${{ success() && github.actor != 'dependabot[bot]' && github.ref == 'refs/heads/main' && github.event_name == 'push' }}
run: pnpm release.ci
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_REGISTRY: https://registry.npmjs.org/
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
deploy-docs:
runs-on: ubuntu-latest
needs: [cache, lint]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3.0.0
name: Install pnpm
with:
version: 7.11.0
run_install: false
- uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: "pnpm"
- name: Install rimraf
run: npm i -g rimraf
- name: Install dependencies
run: pnpm i
- name: Build
run: pnpm build
- name: Build docs
run: pnpm docs:build
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/.vitepress/dist