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.
1 parent 70053da commit ac445b2Copy full SHA for ac445b2
.github/workflows/ci.yaml
@@ -9,20 +9,11 @@ on:
9
jobs:
10
11
test:
12
-
13
- runs-on: ubuntu-latest
14
15
- strategy:
16
- matrix:
17
- node-version: [ 16, 14, 12, 10 ]
18
19
- steps:
20
- - uses: actions/checkout@v2
21
- - run: |
22
- git config --global user.name github-actions
23
- git config --global user.email github-actions@github.com
24
- - uses: actions/setup-node@v2
25
- with:
26
- node-version: ${{ matrix.node-version }}
27
- - run: npm install
28
- - run: npm run test
+ uses: pkgjs/action/.github/workflows/node-test.yaml@v0
+ with:
+ post-checkout-steps: |
+ - name: Set git user to avoid warnings
+ shell: bash
+ run: |
+ git config --global user.name github-actions
+ git config --global user.email github-actions@github.com
0 commit comments