File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -2,22 +2,17 @@ on: [push]
2
2
name : Test
3
3
jobs :
4
4
test :
5
- name : Ubuntu on node ${{ matrix.node }}
6
- runs-on : ubuntu-18.04
5
+ name : ${{ matrix.os }} on node ${{ matrix.node }}
6
+ runs-on : ${{ matrix.os }}
7
7
strategy :
8
8
matrix :
9
- os : [ubuntu-18.04 ]
10
- node : [13]
9
+ os : [windows-latest, ubuntu-latest,macos-latest ]
10
+ node : [10,12, 13]
11
11
steps :
12
12
- uses : actions/checkout@v1
13
13
- uses : actions/setup-node@v1
14
14
with :
15
15
node-version : ${{ matrix.node }}
16
- - run : yarn global add lerna
17
16
- run : yarn install
18
17
-
run :
git config --global user.email "[email protected] " && git config --global user.name "patch-package"
19
18
- run : yarn run test
20
- # Enable the following when ready to publish automatically.
21
- # - run: yarn publish
22
- # env:
23
- # NODE_AUTH_TOKEN: ${{ secrets.YARN_TOKEN }}
You can’t perform that action at this time.
0 commit comments