Skip to content

Commit

Permalink
Add GitHub Actions extension and update PostgreSQL configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mozharov committed Feb 21, 2024
1 parent 798de43 commit 975ccf5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"GitHub.copilot",
"GitHub.copilot-chat",
"esbenp.prettier-vscode",
"Orta.vscode-jest"
"Orta.vscode-jest",
"github.vscode-github-actions"
]
}
},
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ jobs:
postgres:
image: postgres:${{ matrix.postgres-version }}
ports:
- 5443:5432
- 5432:5432
env:
POSTGRES_PASSWORD: 1234
POSTGRES_USER: waisy
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: test
options: >-
--health-cmd pg_isready
--health-interval 10s
Expand Down
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"github.copilot-chat",
"esbenp.prettier-vscode",
"orta.vscode-jest",
"ms-vscode-remote.remote-containers"
"ms-vscode-remote.remote-containers",
"github.vscode-github-actions"
]
}

0 comments on commit 975ccf5

Please sign in to comment.