Skip to content

Commit

Permalink
fix(adonis): migration CI env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Rei-x committed Dec 17, 2024
1 parent 474c82a commit bca87f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/cli/templates/adonis-ci-migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
migration-check:
runs-on: ubuntu-latest
env:
DB_HOST=127.0.0.1
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=postgres
DB_DATABASE=postgres
DB_HOST: 127.0.0.1
DB_PORT: 5432
DB_USER: postgres
DB_PASSWORD: postgres
DB_DATABASE: postgres
services:
postgres:
Expand Down
2 changes: 1 addition & 1 deletion src/cli/templates/adonis-ci.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${nodeVersion}
cache: 'npm'
cache: "npm"
- name: Install dependencies
run: npm ci
Expand Down

0 comments on commit bca87f9

Please sign in to comment.