Skip to content

Commit

Permalink
Run macos integration test (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
shiyuhang0 authored Sep 27, 2024
1 parent dee94ae commit 590a9a2
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:

jobs:
test:
test-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -22,3 +22,19 @@ jobs:
run: |
npm ci
npm run integrationTest
test-macos:
runs-on: macos-latest
if: ${{ always() }}
needs: test-ubuntu
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- name: Run integrationTest
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
run: |
npm ci
npm run integrationTest

0 comments on commit 590a9a2

Please sign in to comment.