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 3d5b001 commit 670b019Copy full SHA for 670b019
.github/workflows/ci.yml
@@ -26,3 +26,19 @@ jobs:
26
- uses: codecov/codecov-action@v1
27
with:
28
token: ${{ secrets.CODECOV_TOKEN }}
29
+
30
+ integration:
31
+ name: Integration tests
32
+ runs-on: ubuntu-latest
33
+ steps:
34
+ - uses: actions/checkout@v1
35
+ with:
36
+ fetch-depth: 1
37
+ - uses: actions/setup-node@v1
38
39
+ node-version: ^12.14.0
40
+ - run: npm install --no-audit
41
+ - run: npm run integration
42
+ - uses: codecov/codecov-action@v1
43
44
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments