Commit ceb2f85 1 parent 8239e7a commit ceb2f85 Copy full SHA for ceb2f85
File tree 1 file changed +12
-9
lines changed
1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change 11
11
check :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v3
15
- - uses : actions/setup-node@v3
14
+ - uses : actions/checkout@v4
15
+ - uses : actions/setup-node@v4
16
16
with :
17
17
node-version : ${{matrix.node}}
18
18
- run : npm install
@@ -26,10 +26,10 @@ jobs:
26
26
fail-fast : false
27
27
matrix :
28
28
os : [ubuntu-latest, macos-latest]
29
- node : [16, 18 ]
29
+ node : [20, 22 ]
30
30
steps :
31
- - uses : actions/checkout@v3
32
- - uses : actions/setup-node@v3
31
+ - uses : actions/checkout@v4
32
+ - uses : actions/setup-node@v4
33
33
with :
34
34
node-version : ${{matrix.node}}
35
35
- run : npm install
39
39
if : github.event_name == 'push' && github.ref == 'refs/heads/main'
40
40
name : Changelog
41
41
runs-on : ubuntu-latest
42
+ permissions :
43
+ contents : write
44
+ pull-requests : write
42
45
outputs :
43
46
releases_created : ${{ steps.tag-release.outputs.releases_created }}
44
47
steps :
@@ -56,14 +59,14 @@ jobs:
56
59
- test
57
60
- changelog
58
61
steps :
59
- - uses : actions/checkout@v2
60
- - uses : actions/setup-node@v2
62
+ - uses : actions/checkout@v4
63
+ - uses : actions/setup-node@v4
61
64
with :
62
65
registry-url : https://registry.npmjs.org/
63
- node-version : 16
66
+ node-version : 22
64
67
- uses : bahmutov/npm-install@v1
65
68
- run : npm run build
66
- - name : NPM Publish
69
+ - name : npm publish
67
70
env :
68
71
NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
69
72
run : cd dist && npm publish --access=public
You can’t perform that action at this time.
0 commit comments