Skip to content

Commit 59f6db6

Browse files
authored
add win, mac and node 10, 12 to matrix, cleanup.
1 parent 8cf5983 commit 59f6db6

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/push.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,17 @@ on: [push]
22
name: Test
33
jobs:
44
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 }}
77
strategy:
88
matrix:
9-
os: [ubuntu-18.04]
10-
node: [13]
9+
os: [windows-latest,ubuntu-latest,macos-latest]
10+
node: [10,12,13]
1111
steps:
1212
- uses: actions/checkout@v1
1313
- uses: actions/setup-node@v1
1414
with:
1515
node-version: ${{ matrix.node }}
16-
- run: yarn global add lerna
1716
- run: yarn install
1817
- run: git config --global user.email "[email protected]" && git config --global user.name "patch-package"
1918
- 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 }}

0 commit comments

Comments
 (0)