Skip to content

Commit

Permalink
build: Run tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vio committed Aug 10, 2023
1 parent ae13eb5 commit 8c1b8f8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,13 @@ jobs:
test-package-cli:
needs:
- build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
version: [20, 18, 16, 14]
name: CLI nodejs ${{ matrix.version }}
runs-on: ${{ matrix.os }}
name: CLI ${{ matrix.os }} nodejs ${{ matrix.version }}
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -198,18 +199,19 @@ jobs:
test-package-webpack-plugin:
needs:
- build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
version: [20, 18, 16, 14]
webpack: ['webpack4', 'webpack5']
exclude:
- webpack: 'webpack4'
version: 18
- webpack: 'webpack4'
version: 20
name: ${{ matrix.webpack }} plugin nodejs ${{ matrix.version }}
runs-on: ${{ matrix.os }}
name: ${{ matrix.webpack }} plugin ${{ matrix.os }} nodejs ${{ matrix.version }}
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 8c1b8f8

Please sign in to comment.