test(es/plugin): Expand test matrix (#5477)

This commit is contained in:
Donny/강동윤 2022-08-13 23:06:27 +09:00 committed by GitHub
parent 8fde2ab07b
commit a76380c585
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -19,6 +19,7 @@ env:
# https://github.com/swc-project/swc/pull/3742 # https://github.com/swc-project/swc/pull/3742
RUST_MIN_STACK: 4194304 RUST_MIN_STACK: 4194304
CI: 1 CI: 1
CARGO_TERM_COLOR: "always"
jobs: jobs:
check-license: check-license:

View File

@ -4,13 +4,20 @@ on: [push, pull_request]
env: env:
CARGO_INCREMENTAL: 0 CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: "always"
jobs: jobs:
publish-test: publish-test:
name: node-api name: node-api - ${{ matrix.os }}
if: >- if: >-
${{ !contains(github.event.head_commit.message, 'chore: ') }} ${{ !contains(github.event.head_commit.message, 'chore: ') }}
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3