Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aliofye authored Jan 14, 2025
1 parent 82421fd commit e053655
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ jobs:
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
run: bun install
- name: Compile typescript
run: bun run compile
- name: Lint
run: bun run lint
- name: Wait for Database
run: |
until pg_isready -h localhost -p 5432 -U test_user -d test_db; do
echo "Waiting for PostgreSQL...";
sleep 3;
done
- name: Build
- run: bun run compile
- name: Lint
- run: bun run lint
- name: Run migrations
run: bun run db:migrate
- name: Run tests
Expand Down

0 comments on commit e053655

Please sign in to comment.