From 975ccf54795ad6390fde23b527b44016362a52cd Mon Sep 17 00:00:00 2001 From: Vladislav Mozharov Date: Wed, 21 Feb 2024 20:09:18 +0300 Subject: [PATCH] Add GitHub Actions extension and update PostgreSQL configuration --- .devcontainer/devcontainer.json | 3 ++- .github/workflows/node.yml | 7 ++++--- .vscode/extensions.json | 3 ++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index cc8170b..f74bbc0 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,8 @@ "GitHub.copilot", "GitHub.copilot-chat", "esbenp.prettier-vscode", - "Orta.vscode-jest" + "Orta.vscode-jest", + "github.vscode-github-actions" ] } }, diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index a54f8bb..2bdd350 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -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 diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 1198349..89d7215 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -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" ] } \ No newline at end of file