File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,11 @@ jobs:
13
13
14
14
steps :
15
15
- uses : actions/checkout@v3
16
- - name : Use Node.js ${{ matrix.node-version }}
17
- uses : actions/setup-node@v3
16
+ - uses : actions/setup-node@v3
18
17
with :
19
18
node-version : ${{ matrix.node-version }}
20
19
cache : " yarn"
21
- - name : Install dependencies
22
- run : yarn
20
+ - run : yarn
23
21
- run : yarn lint
24
22
- run : yarn build
25
23
- run : yarn test
Original file line number Diff line number Diff line change @@ -11,20 +11,16 @@ jobs:
11
11
needs : call-build
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - name : Checkout Repo
15
- uses : actions/checkout@v3
14
+ - uses : actions/checkout@v3
16
15
with :
17
16
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
18
17
fetch-depth : 0
19
18
20
- - name : Setup Node.js 16.x
21
- uses : actions/setup-node@v3
19
+ - uses : actions/setup-node@v3
22
20
with :
23
- node-version : " 16"
24
21
cache : " yarn"
25
22
26
- - name : Install Dependencies
27
- run : yarn
23
+ - run : yarn
28
24
29
25
- name : Create Release Pull Request or Publish to npm
30
26
id : changesets
You can’t perform that action at this time.
0 commit comments