File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 10
10
- uses : actions/setup-node@v1
11
11
with :
12
12
node-version : 10
13
- - run : npm lint
14
- - run : npm test
15
- - run : npm build
13
+ - run : npm install -g yarn
14
+ - run : yarn install --pure-lockfile
15
+ - run : yarn lint
16
+ - run : yarn test
17
+ - run : yarn build
16
18
17
19
Original file line number Diff line number Diff line change 12
12
- uses : actions/setup-node@v1
13
13
with :
14
14
node-version : 10
15
- - run : npm lint
16
- - run : npm test
17
- - run : npm build
15
+ - run : npm install -g yarn
16
+ - run : yarn install --pure-lockfile
17
+ - run : yarn lint
18
+ - run : yarn test
19
+ - run : yarn build
18
20
19
21
publish-npm :
20
22
needs : build
25
27
with :
26
28
node-version : 10
27
29
registry-url : https://registry.npmjs.org/
30
+ - run : npm install -g yarn
31
+ - run : yarn install --pure-lockfile
28
32
- run : npm publish
29
33
env :
30
34
NODE_AUTH_TOKEN : ${{secrets.npm_token}}
You can’t perform that action at this time.
0 commit comments