File tree Expand file tree Collapse file tree 1 file changed +13
-25
lines changed Expand file tree Collapse file tree 1 file changed +13
-25
lines changed Original file line number Diff line number Diff line change 7
7
paths-ignore :
8
8
- ' **.md'
9
9
tags :
10
- - v*
10
+ - ' * '
11
11
12
12
jobs :
13
13
lint :
14
14
runs-on : ubuntu-latest
15
15
if : " !contains(github.event.head_commit.message, '#skip-lint')"
16
16
steps :
17
- - name : Checkout
18
- uses : actions/checkout@v2
17
+ - uses : actions/checkout@v2
19
18
20
- - name : Install
21
- run : npm ci
19
+ - run : npm ci
22
20
23
- - name : Lint
24
- run : npm run lint
21
+ - run : npm run lint
25
22
26
23
build :
27
24
runs-on : ubuntu-latest
28
25
needs : lint
29
26
if : " !contains(github.event.head_commit.message, '#skip-build')"
30
27
steps :
31
- - name : Checkout
32
- uses : actions/checkout@v2
28
+ - uses : actions/checkout@v2
33
29
34
- - name : Install
35
- run : npm ci
30
+ - run : npm ci
36
31
37
- - name : Build
38
- run : npm run build
32
+ - run : npm run build
39
33
40
34
release :
41
35
runs-on : ubuntu-latest
@@ -51,21 +45,15 @@ jobs:
51
45
runs-on : ubuntu-latest
52
46
needs : release
53
47
steps :
54
- - name : Checkout
55
- uses : actions/checkout@v2
56
- with :
57
- persist-credentials : false
58
- fetch-depth : 0
59
-
48
+ - uses : actions/checkout@v2
49
+
60
50
- uses : actions/setup-node@v2
61
51
with :
62
- node-version : " 17.x"
63
- registry-url : " https://registry.npmjs.org"
52
+ node-version : ' 17.x'
53
+ registry-url : ' https://registry.npmjs.org'
64
54
65
- - name : Install
66
- run : npm ci
55
+ - run : npm ci
67
56
68
- - name : Publish
69
- run : npm publish
57
+ - run : npm publish
70
58
env :
71
59
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments