Skip to content

Commit

Permalink
run macos
Browse files Browse the repository at this point in the history
  • Loading branch information
shiyuhang0 committed Sep 27, 2024
1 parent dee94ae commit f84494a
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 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,18 @@ jobs:
run: |
npm ci
npm run integrationTest
test-macos:
runs-on: macos-latest
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 f84494a

Please sign in to comment.