diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1ff1737..7c2c64cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }}