Skip to content

Commit

Permalink
Try running a testing matrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
sangaline committed Jan 14, 2024
1 parent bf47e90 commit e1e7a8c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ on:

jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
node: [14, 16, 18, 20, 22]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -18,7 +22,7 @@ jobs:
id: setup-node
uses: actions/setup-node@v3
with:
node-version: 18.18.2
node-version: ${{ matrix.node }}
cache: yarn

- name: Install JavaScript Dependencies
Expand Down

0 comments on commit e1e7a8c

Please sign in to comment.