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 2ff727a commit 0db80e4Copy full SHA for 0db80e4
.github/workflows/ci.yml
@@ -2,7 +2,7 @@ name: Install and test @ava/cooperate
2
on:
3
push:
4
branches:
5
- - master
+ - main
6
pull_request:
7
paths-ignore:
8
- '*.md'
@@ -15,15 +15,13 @@ jobs:
15
matrix:
16
node-version: [^12.22, ^14.17, ^16.4, ^17]
17
steps:
18
- - uses: actions/checkout@v1
19
- with:
20
- fetch-depth: 1
21
- - uses: actions/setup-node@v1
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
22
with:
23
node-version: ${{ matrix.node-version }}
24
- run: npm install --no-audit
25
- run: npm test
26
- - uses: codecov/codecov-action@v1
+ - uses: codecov/codecov-action@v2
27
28
file: coverage/lcov.info
29
name: ${{ matrix.node-version }}
0 commit comments