Add integration-tests to CI workflow

This commit is contained in:
Jakob Linskeseder
2021-12-22 23:44:18 +01:00
committed by Jay Linski
parent 9ed9418488
commit e0f50b4eec
5 changed files with 13 additions and 6 deletions
+9 -2
View File
@@ -26,7 +26,7 @@ jobs:
run: npm run lint
test:
name: Test
name: Test (Node)
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
@@ -52,8 +52,15 @@ jobs:
- name: Test
run: npm run test
- name: Test (Integration)
# https://github.com/webpack/webpack/issues/14532
if: ${{ matrix.node-version != '17' }}
run: |
cd ./tests/integration/webpack-babel-test && ./test.sh && cd -
cd ./tests/integration/webpack-test && ./test.sh && cd -
browser:
name: Browser Tests
name: Test (Browser)
runs-on: 'ubuntu-latest'
steps:
- name: Checkout