generated from nl-design-system/example
-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (64 loc) · 1.94 KB
/
continuous-deployment.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
name: Continuous Deployment
on:
push:
branches:
- main
pull_request:
jobs:
continuous-integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js version
uses: actions/setup-node@v3.1.0
with:
node-version: "18"
- name: Install
run: |
npm ci
npm ls
- name: "Continuous Integration: lint"
run: |
npm run lint --if-present
- name: "Continuous Integration: build"
run: |
npm run build --if-present
- name: "Continuous Integration: test"
run: |
npm run test --if-present
publish-npm:
runs-on: ubuntu-latest
needs: continuous-integration
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_REPO_TOKEN }}
- name: Set up Node.js version
uses: actions/setup-node@v3.1.0
with:
node-version: "18"
- name: "Continuous Deployment: install"
run: |
npm ci
npm ls
- name: "Continuous Deployment: build"
run: |
npm run build --if-present
- name: "Continuous Deployment: publish to GitHub repository"
env:
GITHUB_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: "NL Design System"
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
GIT_COMMITTER_NAME: "NL Design System"
run: |
git push --set-upstream origin HEAD
npm run release -- --yes
- name: "Continuous Deployment: publish to npm"
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm config set "//registry.npmjs.org/:_authToken" "${NPM_TOKEN}"
npm run publish -- --no-verify-access --yes
npm config delete "//registry.npmjs.org/:_authToken"