Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI for windows #1132

Merged
merged 11 commits into from
Feb 2, 2024
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,25 @@ jobs:
npm run db:migrate
npm run lint
npm test

build_windows:
runs-on: windows-latest
steps:
- name: Setup PostgreSQL for Linux/macOS/Windows
uses: ikalnytskyi/action-setup-postgres@v5
id: postgres
with:
port: 5433
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: |
pg_isready
npm ci
npm run db:migrate
npm test

automerge:
needs: build
runs-on: ubuntu-latest
Expand Down
Loading