-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (49 loc) · 1.12 KB
/
ci-cd.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
name: CI-CD
on:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: build
run: npm run build
- name: test
run: npm run test
cd:
runs-on: ubuntu-latest
needs: ci
permissions:
contents: write # to gh release
issues: write # comment on release issues
pull-requests: write # comment of PRs
id-token: write # OID for npm
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: node setup
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: build
run: npm run build
- name: audit
run: npm audit signatures
- name: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm run release
echo "Released 🚀"