mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
chore: Remove docker references from Windows integration tests
This commit is contained in:
parent
c2d811754b
commit
06663f3079
28
.github/workflows/ci.yml
vendored
28
.github/workflows/ci.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user