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 d582471
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,16 @@ 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 }}
include:
- os: windows-latest
node: 14
runs-on: ${{ matrix.os }}
name: CLI ${{ matrix.os }} nodejs ${{ matrix.version }}
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -198,18 +202,22 @@ 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 }}
include:
- os: windows-latest
node: 14
runs-on: ${{ matrix.os }}
name: ${{ matrix.webpack }} plugin ${{ matrix.os }} nodejs ${{ matrix.version }}
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit d582471

Please sign in to comment.