fix: Adjust e2e-tests CI job working directories

This commit is contained in:
Faruk AYDIN
2024-11-19 15:49:25 +03:00
parent 395c09df92
commit ff93ffd0b1

View File

@@ -58,13 +58,21 @@ jobs:
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: 18 node-version: 18
- name: Install dependencies - name: Install web dependencies
run: yarn run: yarn
working-directory: ./packages/web
- name: Install backend dependencies
run: yarn
working-directory: ./packages/backend
- name: Install e2e-tests dependencies
run: yarn
working-directory: ./packages/e2e-tests
- name: Install Playwright Browsers - name: Install Playwright Browsers
run: yarn playwright install --with-deps run: yarn playwright install --with-deps
working-directory: ./packages/e2e-tests
- name: Build Automatisch web - name: Build Automatisch web
working-directory: ./packages/web
run: yarn build run: yarn build
working-directory: ./packages/web
env: env:
# Keep this until we clean up warnings in build processes # Keep this until we clean up warnings in build processes
CI: false CI: false