File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 28
28
# version: next-8
29
29
30
30
- name : Install yarn
31
- run : npm i yarn@1
31
+ run : npm i -g yarn@1
32
32
33
33
- name : Use Node.js ${{ matrix.node-version }}
34
34
uses : actions/setup-node@v3
@@ -40,13 +40,13 @@ jobs:
40
40
run : yarn install
41
41
42
42
- name : Build
43
- run : npm run build --if-present
43
+ run : yarn run build --if-present
44
44
45
45
- name : Test
46
- run : npm test
46
+ run : yarn test
47
47
48
48
- name : Test docs
49
- run : npm run coverage
49
+ run : yarn run coverage
50
50
51
51
unit-test-windows :
52
52
runs-on : windows-latest
65
65
# version: next-8
66
66
67
67
- name : Install yarn
68
- run : npm i yarn@1
68
+ run : npm i -g yarn@1
69
69
70
70
- name : Use Node.js ${{ matrix.node-version }}
71
71
uses : actions/setup-node@v3
@@ -77,10 +77,10 @@ jobs:
77
77
run : yarn install
78
78
79
79
- name : Build
80
- run : npm run build --if-present
80
+ run : yarn run build --if-present
81
81
82
82
- name : Test
83
- run : npm test
83
+ run : yarn test
84
84
85
85
- name : Test docs
86
- run : npm run coverage
86
+ run : yarn run coverage
Original file line number Diff line number Diff line change
1
+ name : Create Release Tag
2
+
1
3
on :
2
4
push :
3
5
tags :
4
6
- ' v*' # Push events to matching v*, i.e. v1.0, v20.15.10
5
7
6
- name : Create Release
7
-
8
- permissions : {}
9
8
jobs :
10
9
build :
11
10
name : Create Release
You can’t perform that action at this time.
0 commit comments