Skip to content

Commit

Permalink
Add windows and macos to CI build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
sehrope committed Jan 5, 2024
1 parent f1b4b2f commit dc026a2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: make clean deps lint

test:
name: Test - Node v${{ matrix.node_version }}
name: Test - ${matrix.os} x Node v${{ matrix.node_version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -29,13 +29,18 @@ jobs:
- '20'
- 'lts/*'
- 'latest'
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: npm
- name: Show env
run: |
node --version
uname -a
- name: Compile
run: make clean deps compile
- name: Setup Postgres
Expand Down

0 comments on commit dc026a2

Please sign in to comment.