File tree Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Original file line number Diff line number Diff line change @@ -22,25 +22,17 @@ jobs:
22
22
name : Release
23
23
runs-on : [ubuntu-latest]
24
24
steps :
25
- - name : Checkout
26
- uses : actions/checkout@v4
25
+ - uses : actions/checkout@v4
27
26
28
- - name : Install Node.js
29
- uses : actions/setup-node@v4
27
+ - uses : actions/setup-node@v4
30
28
with :
31
29
node-version : 22
32
30
33
- - name : Install dependencies
34
- run : npm install
31
+ - run : npm install
35
32
36
- - name : Lint
37
- run : npm run lint
33
+ - run : npm test
38
34
39
- - name : Run all tests
40
- run : npm test
41
-
42
- - name : Release and publish
43
- run : npx semantic-release
35
+ - run : npx semantic-release
44
36
env :
45
37
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
46
38
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 26
26
27
27
- run : npm install
28
28
29
- - run : npm run lint
30
-
31
29
- run : npm test
You can’t perform that action at this time.
0 commit comments