Skip to content

Commit 670b019

Browse files
committed
Restore integration tests when using GitHub Actions
1 parent 3d5b001 commit 670b019

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,19 @@ jobs:
2626
- uses: codecov/codecov-action@v1
2727
with:
2828
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+
with:
39+
node-version: ^12.14.0
40+
- run: npm install --no-audit
41+
- run: npm run integration
42+
- uses: codecov/codecov-action@v1
43+
with:
44+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)