File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : false
10
10
matrix :
11
- node : [14, 16]
11
+ node : [14, 16, current, lts/* ]
12
12
# windows support not quite ready: os: [ubuntu-latest, windows-latest]
13
- os : [ubuntu-latest]
13
+ os : [ubuntu-latest, macos-latest ]
14
14
15
15
steps :
16
16
- name : Clone repository
36
36
echo '{"user": "nodejs", "token": "'${{ secrets.GITHUB_TOKEN }}'"}' > ~/.config/changelog-maker/config.json
37
37
if : startsWith(matrix.os, 'ubuntu')
38
38
39
+ - name : Set up ghauth config (macOS)
40
+ run : |
41
+ mkdir -p ~/Library/Application\ Support/changelog-maker/
42
+ echo '{"user": "nodejs", "token": "'${{ secrets.GITHUB_TOKEN }}'"}' > ~/Library/Application\ Support/changelog-maker/config.json
43
+ if : startsWith(matrix.os, 'macos')
44
+
39
45
- name : Set up ghauth config (Windows)
40
46
run : |
41
47
mkdir "%LOCALAPPDATA%\changelog-maker\"
61
67
- name : Setup Node.js
62
68
uses : actions/setup-node@v3
63
69
with :
64
- node-version : 14
70
+ node-version : lts/*
65
71
66
72
- name : Install dependencies
67
73
run : |
You can’t perform that action at this time.
0 commit comments