From ab08cd9e342bb000d1694ab3bd676f524c5952f3 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Fri, 16 Dec 2022 16:46:26 +0100 Subject: [PATCH] add sync await/done --- .gitpod.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 63f68f61..17e88e71 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,7 +2,14 @@ tasks: - name: Run PostgreSQL Database command: docker run --name postgres -p 5432:5432 -e POSTGRES_PASSWORD=postgres -d postgres + - name: Install Project Dependencies + command: | + pnpm install + pnpm dlx playwright install --with-deps chromium + gp sync-done dependencies + - name: Generate Environment Variables + init: gp sync-await dependencies command: | if [ -f .env ]; then echo "Found .env in workspace, skipping generation" @@ -10,11 +17,6 @@ tasks: pnpm generate-env fi - - name: Install Project Dependencies - command: | - pnpm dlx playwright install --with-deps chromium - pnpm install - ports: # PostgreSQL - port: 5432