diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42e095ceb..921d7ac1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,12 +73,9 @@ jobs: run: npm run test:deploy test-integration: - runs-on: ${{ matrix.operating-system }} + runs-on: ubuntu-latest strategy: matrix: - operating-system: - - ubuntu-latest - - windows-latest node-version: - '12.x' - '14.x' @@ -109,6 +106,29 @@ jobs: - name: Run integration tests run: npm run test:integration + test-integration-windows: + runs-on: windows-latest + strategy: + matrix: + node-version: + - '12.x' + - '14.x' + - '16.x' + timeout-minutes: 10 + steps: + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - name: Ensure line endings are consistent + run: git config --global core.autocrlf input + - name: Check out repository + uses: actions/checkout@v2 + - name: Install dependencies and run build scripts + run: npm ci + - name: Run integration tests + run: npm run test:integration + coveralls: needs: test-unit runs-on: ubuntu-latest