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 74df35e commit 1fe2fd6Copy full SHA for 1fe2fd6
.github/workflows/node.js.yml
@@ -25,7 +25,13 @@ jobs:
25
uses: actions/setup-node@v1
26
with:
27
node-version: ${{ matrix.node-version }}
28
- - run: npm i -g yarn codecov
29
- - run: yarn install
30
- - run: yarn test
31
- - run: codecov
+ - name: Install yarn
+ run: npm i -g yarn
+ - name: Install dependencies
+ run: yarn install
32
+ - name: Run the tests
33
+ run: yarn test
34
+ - name: Upload coverage to Codecov
35
+ uses: codecov/codecov-action@v1
36
+ with:
37
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments