diff --git a/.github/workflows/bank.yml b/.github/workflows/bank.yml index 85f46d66..0c987929 100644 --- a/.github/workflows/bank.yml +++ b/.github/workflows/bank.yml @@ -56,9 +56,9 @@ jobs: with: node-version: 20 cache: npm - cache-dependency-path: 'bank/bank-backend/package-lock.json' + cache-dependency-path: 'typescript/bank/bank-backend/package-lock.json' - name: Compile Bank Server - working-directory: bank/bank-backend/ + working-directory: typescript/bank/bank-backend/ run: | npm ci npm run lint diff --git a/.github/workflows/greeting-guestbook.yml b/.github/workflows/greeting-guestbook.yml index 29dbf1d2..04e306d8 100644 --- a/.github/workflows/greeting-guestbook.yml +++ b/.github/workflows/greeting-guestbook.yml @@ -54,7 +54,7 @@ jobs: with: node-version: 20 - name: Compile Hello World - working-directory: dbos-demo-apps/greeting-guestbook + working-directory: dbos-demo-apps/typescript/greeting-guestbook run: | npm install npx knex migrate:latest diff --git a/.github/workflows/shop.yml b/.github/workflows/shop.yml index 580eb49b..567aa07f 100644 --- a/.github/workflows/shop.yml +++ b/.github/workflows/shop.yml @@ -55,9 +55,9 @@ jobs: with: node-version: 20 cache: npm - cache-dependency-path: 'e-commerce/shop-backend/package-lock.json' + cache-dependency-path: 'typescript/e-commerce/shop-backend/package-lock.json' - name: Compile Shop Backend Server - working-directory: e-commerce/shop-backend/ + working-directory: typescript/e-commerce/shop-backend/ run: | npm ci npm run lint @@ -70,7 +70,7 @@ jobs: # The default PostgreSQL port POSTGRES_PORT: 5432 - name: Compile Payment Backend Server - working-directory: e-commerce/payment-backend/ + working-directory: typescript/e-commerce/payment-backend/ run: | npm ci npm run lint diff --git a/.github/workflows/tpcc.yml b/.github/workflows/tpcc.yml index 836493a1..8d3d0aeb 100644 --- a/.github/workflows/tpcc.yml +++ b/.github/workflows/tpcc.yml @@ -60,7 +60,7 @@ jobs: with: node-version: 20 - name: Compile and Test TPC-C - working-directory: dbos-demo-apps/tpcc + working-directory: dbos-demo-apps/typescript/tpcc run: | npm install npm run build diff --git a/.github/workflows/yky-social.yml b/.github/workflows/yky-social.yml index f1edeef2..309e6983 100644 --- a/.github/workflows/yky-social.yml +++ b/.github/workflows/yky-social.yml @@ -48,17 +48,17 @@ jobs: # cache: 'npm' - name: Change directory and install dependencies run: | - cd ./dbos-demo-apps/yky-social + cd ./dbos-demo-apps/typescript/yky-social npm ci --no-audit - name: Create new PG DB and User run: | - cd ./dbos-demo-apps/yky-social + cd ./dbos-demo-apps/typescript/yky-social scripts/init_pgdb.sh env: # The postgres superuser password we set above PGPASSWORD: dbos - name: Build Test yky-social - working-directory: ./dbos-demo-apps/yky-social + working-directory: ./dbos-demo-apps/typescript/yky-social run: | npm run build npm run lint