Skip to content

Commit

Permalink
chore: Remove docker references from Windows integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimvh committed Nov 5, 2021
1 parent c2d8117 commit 06663f3
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 06663f3

Please sign in to comment.