File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 10
10
runs-on : ${{ matrix.os }}
11
11
strategy :
12
12
matrix :
13
- node : [14 ]
13
+ node-version : [18 ]
14
14
os : [ubuntu-latest]
15
15
16
16
steps :
29
29
env :
30
30
SLACK_WEBHOOK : ${{ secrets.SLACK_WEBHOOK }}
31
31
SLACK_TITLE : ' Node version'
32
- SLACK_MESSAGE : ${{ matrix.node }}
32
+ SLACK_MESSAGE : ${{ matrix.node-version }}
33
33
SLACK_COLOR : ${{ job.status == 'success' && 'good' || job.status == 'cancelled' && '#808080' || 'danger' }}
34
34
Original file line number Diff line number Diff line change 14
14
runs-on : ${{ matrix.os }}
15
15
strategy :
16
16
matrix :
17
- node-version : [14 .x, 16 .x]
17
+ node-version : [18 .x, 20 .x]
18
18
os : [ubuntu-latest, windows-latest]
19
19
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
20
20
Original file line number Diff line number Diff line change 13
13
- uses : actions/checkout@v2
14
14
- uses : actions/setup-node@v1
15
15
with :
16
- node-version : 16
16
+ node-version : 18
17
17
- run : npm install
18
18
- run : npm test
19
19
- uses : JS-DevTools/npm-publish@v1
20
20
with :
21
- token : ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
21
+ token : ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
Original file line number Diff line number Diff line change 22
22
git config user.email github-actions@github.com
23
23
- uses : actions/setup-node@v1
24
24
with :
25
- node-version : 16
25
+ node-version : 18
26
26
- run : |
27
27
npm install
28
28
npm test
You can’t perform that action at this time.
0 commit comments