We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e0610ac + 59f6db6 commit 46c1405Copy full SHA for 46c1405
.github/workflows/push.yml
@@ -0,0 +1,18 @@
1
+on: [push]
2
+name: Test
3
+jobs:
4
+ test:
5
+ name: ${{ matrix.os }} on node ${{ matrix.node }}
6
+ runs-on: ${{ matrix.os }}
7
+ strategy:
8
+ matrix:
9
+ os: [windows-latest,ubuntu-latest,macos-latest]
10
+ node: [10,12,13]
11
+ steps:
12
+ - uses: actions/checkout@v1
13
+ - uses: actions/setup-node@v1
14
+ with:
15
+ node-version: ${{ matrix.node }}
16
+ - run: yarn install
17
+ - run: git config --global user.email "[email protected]" && git config --global user.name "patch-package"
18
+ - run: yarn run test
0 commit comments