Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperisager committed Mar 13, 2024
1 parent 3a722c1 commit 51a2d5f
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,23 @@ jobs:
test:
strategy:
matrix:
node: [lts/*]
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
name: ubuntu
platform: linux
arch: x64
- os: macos-latest
name: macos
platform: darwin
arch: x64
- os: windows-latest
name: windows
platform: win32
arch: x64
runs-on: ${{ matrix.os }}
name: ${{ matrix.name }}
name: ${{ matrix.platform }}-${{ matrix.arch }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
node-version: lts/*
- run: npm install -g bare-runtime
- run: npm install
- run: npm test

0 comments on commit 51a2d5f

Please sign in to comment.