Skip to content

Commit

Permalink
Run tests with differnt matrix values
Browse files Browse the repository at this point in the history
  • Loading branch information
illright committed Dec 3, 2023
1 parent f97aa10 commit de81ad2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ concurrency:

jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [18, 20]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -21,7 +25,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
node-version: ${{ matrix.node }}
cache: pnpm

- name: Install dependencies
Expand Down

0 comments on commit de81ad2

Please sign in to comment.