-
Notifications
You must be signed in to change notification settings - Fork 160
290 lines (250 loc) · 12.4 KB
/
npm-publish.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: React Oidc CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
PNPM_VERSION: 8.6.11
NODE_VERSION: 18
jobs:
skip_ci:
runs-on: ubuntu-latest
outputs:
canSkip: ${{ steps.check.outputs.canSkip }}
steps:
- id: check
uses: Legorooj/skip-ci@main
tests:
runs-on: ubuntu-latest
if: needs.skip_ci.outputs.canSkip != 'true' && github.event.pull_request.head.repo.fork
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: ${{ env.PNPM_VERSION }}
run_install: false
- name: pnpm i
run: pnpm i --frozen-lockfile
working-directory: ./packages/react-oidc
- name: pnpm prepare
run: pnpm run prepare
working-directory: ./packages/react-oidc
- name: pnpm test
run: pnpm test -- --run
working-directory: ./packages/react-oidc
- name: pnpm install
run: pnpm i --frozen-lockfile
working-directory: ./packages/oidc-client
- name: pnpm prepare
run: pnpm run prepare
working-directory: ./packages/oidc-client
build:
permissions:
contents: write
environment: react-oidc
runs-on: ubuntu-latest
if: needs.skip_ci.outputs.canSkip != 'true' && !github.event.pull_request.head.repo.fork
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GIT_TOKEN }}
fetch-depth: 0
- name: Determine Alpha, Beta or Release
id: which_tag
run: |
if [[ ${{ github.ref }} == refs/pull* ]]; then
last_commit_message=$(curl -s "https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls/${{ github.event.number }}/commits" | jq -r '.[-1].commit.message')
else
last_commit_message=$(git log --format=%B -n 1)
fi
echo "last commit message is: $last_commit_message"
# Check if last comment and with "(alpha)", "(beta)" or "(release)"
if [[ $last_commit_message == *alpha* ]]; then
echo "tag=alpha" >> $GITHUB_OUTPUT
fi
if [[ $last_commit_message == *beta* ]]; then
echo "tag=beta" >> $GITHUB_OUTPUT
fi
if [[ $last_commit_message == *release* ]]; then
echo "tag=release" >> $GITHUB_OUTPUT
fi
- name: Bump version and push tag
id: tag_release
if: github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release'
uses: mathieudutour/github-tag-action@v6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Bump version and push tag
id: tag_version
if: steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
uses: mathieudutour/github-tag-action@v6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: true
- name: Compute new version number to publish
id: tag
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: |
if [[ '${{ steps.which_tag.outputs.tag }}' == 'release' ]]; then
version=${{ steps.tag_release.outputs.new_version }}
else
version=${{ steps.tag_version.outputs.new_version }}
fi
if [[ '${{ steps.which_tag.outputs.tag }}' = 'release' ]]; then
echo "new_version=$version" >> $GITHUB_OUTPUT
fi
if [[ '${{ steps.which_tag.outputs.tag }}' = 'alpha' ]]; then
echo "new_version=$version-alpha.${{ github.run_number }}" >> $GITHUB_OUTPUT
fi
if [[ '${{ steps.which_tag.outputs.tag }}' = 'beta' ]]; then
echo "new_version=$version-beta.${{ github.run_number }}" >> $GITHUB_OUTPUT
fi
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: ${{ env.PNPM_VERSION }}
run_install: false
# oidc-client-service-worker
- name: pnpm version ${{ steps.tag.outputs.new_version }}
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: pnpm version ${{ steps.tag.outputs.new_version }}
working-directory: ./packages/oidc-client-service-worker
- name: update version.ts ${{ steps.tag.outputs.new_version }}
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: |
echo "export default '${{ steps.tag.outputs.new_version }}';" > version.ts
working-directory: ./packages/oidc-client-service-worker/src
- name: pnpm ci
run: pnpm i --frozen-lockfile
working-directory: ./packages/oidc-client-service-worker
- name: pnpm prepare
run: pnpm run prepare
working-directory: ./packages/oidc-client-service-worker
- name: pnpm test
run: pnpm test -- --run
working-directory: ./packages/oidc-client-service-worker
# oidc-client
- name: pnpm version ${{ steps.tag.outputs.new_version }}
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: |
set -e
pnpm version ${{ steps.tag.outputs.new_version }} || true
cat package.json
working-directory: ./packages/oidc-client
- name: update version.ts ${{ steps.tag.outputs.new_version }}
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: |
echo "export default '${{ steps.tag.outputs.new_version }}';" > version.ts
working-directory: ./packages/oidc-client/src
- name: pnpm ci
run: pnpm i --frozen-lockfile
working-directory: ./packages/oidc-client
- name: pnpm prepare
run: pnpm run prepare
working-directory: ./packages/oidc-client
# React-oidc
- name: pnpm version ${{ steps.tag.outputs.new_version }}
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: |
set -e
pnpm version ${{ steps.tag.outputs.new_version }} || true
cat package.json
working-directory: ./packages/react-oidc
- name: pnpm i
run: pnpm i --frozen-lockfile
working-directory: ./packages/react-oidc
- name: pnpm prepare
run: pnpm run prepare
working-directory: ./packages/react-oidc
- name: pnpm test
run: pnpm test -- --run
working-directory: ./packages/react-oidc
# oidc-client-service-worker
- id: publish-oidc-client-service-worker
uses: JS-DevTools/npm-publish@v1
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/oidc-client-service-worker/package.json
# oidc-client
- name: replace workspace:* by ${{ steps.tag.outputs.new_version }}
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: |
sed -i 's/workspace:\*/${{ steps.tag.outputs.new_version }}/g' package.json
cat package.json
working-directory: ./packages/oidc-client
- id: publish-oidc-client
uses: JS-DevTools/npm-publish@v1
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/oidc-client/package.json
- name: replace ${{ steps.tag.outputs.new_version }} by workspace:*
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: |
sed -i 's/"@axa-fr\/oidc-client-service-worker": "[^"]*"/"@axa-fr\/oidc-client-service-worker": "workspace:*"/g' package.json
cat package.json
working-directory: ./packages/oidc-client
# react-oidc
- name: replace workspace:* by ${{ steps.tag.outputs.new_version }}
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: |
sed -i 's/workspace:\*/${{ steps.tag.outputs.new_version }}/g' package.json
cat package.json
working-directory: ./packages/react-oidc
- id: publish-react
uses: JS-DevTools/npm-publish@v1
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/react-oidc/package.json
- name: replace ${{ steps.tag.outputs.new_version }} by workspace:*
if: (github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release') || steps.which_tag.outputs.tag == 'alpha' || steps.which_tag.outputs.tag == 'beta'
run: |
sed -i 's/"@axa-fr\/oidc-client-service-worker": "[^"]*"/"@axa-fr\/oidc-client-service-worker": "workspace:*"/g' package.json
sed -i 's/"@axa-fr\/oidc-client": "[^"]*"/"@axa-fr\/oidc-client": "workspace:*"/g' package.json
cat package.json
working-directory: ./packages/react-oidc
- name: Commit and push
if: github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release'
run: |
git config --global user.name "GitHub"
git config --global user.email "github-action@bot.com"
git add .
git commit -m "[skip ci] Update to version ${{ steps.tag.outputs.new_version }} in package.json"
git tag ${{ steps.tag.outputs.new_version }}
git push --set-upstream origin "HEAD:main" --follow-tags -f
chmod +x ./bin/generate-changelog.sh
./bin/generate-changelog.sh
git add .
git commit -m "[skip ci] Generate changelog to version ${{ steps.tag.outputs.new_version }}"
git push --set-upstream origin "HEAD:main" --follow-tags -f
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
if: github.event.pull_request.head.repo.full_name == github.repository && !github.event.pull_request.head.repo.fork
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
-Dsonar.organization=axaguildev
-Dsonar.projectKey=AxaGuilDEv_react-oidc
-Dsonar.exclusions=**/*.spec.js,**/*.stories.js,Scripts/**,**/*.scss,**/__snapshots__/**,**/*[Tt]ests.cs,**/node_modules/**,**/ClientApp/build/**,**/ClientApp/.storybook/**,**/ClientApp/storybook-static/**,**/obj/**,**/__mocks__/**,**/ClientApp/src/serviceWorker.ts
-Dsonar.javascript.lcov.reportPaths=**/coverage/lcov.info
- name: Create a GitHub release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/main' && steps.which_tag.outputs.tag == 'release'
with:
tag: ${{ steps.tag_release.outputs.new_tag }}
name: Release ${{ steps.tag_release.outputs.new_tag }}
body: ${{ steps.tag_release.outputs.changelog }}