diff --git a/.github/workflows/integration-test-macos.yml b/.github/workflows/integration-test-macos.yml new file mode 100644 index 0000000..7fe9103 --- /dev/null +++ b/.github/workflows/integration-test-macos.yml @@ -0,0 +1,20 @@ +name: Integration Test on MacOS + +on: + workflow_dispatch: + +jobs: + test: + runs-on: macos-latest + steps: + - uses: actions/checkout@v3 + - 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