Skip to content

Commit

Permalink
Restore integration tests when using GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
novemberborn committed Jan 19, 2020
1 parent 3d5b001 commit 670b019
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,19 @@ jobs:
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}

integration:
name: Integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- uses: actions/setup-node@v1
with:
node-version: ^12.14.0
- run: npm install --no-audit
- run: npm run integration
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 670b019

Please sign in to comment.