Skip to content

Commit

Permalink
remove extra cds
Browse files Browse the repository at this point in the history
  • Loading branch information
emma-sg committed Dec 13, 2024
1 parent 168003d commit 05eefa9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/frontend-lint-test-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,19 +136,21 @@ jobs:
if: steps.playwright-cache.outputs.cache-hit != 'true'

- name: Create env file
working-directory: frontend
run: |
cd frontend
touch .env
echo DEV_PASSWORD="${{ secrets.DEV_PASSWORD }}" >> .env
echo API_BASE_URL=${{ secrets.API_BASE_URL }} >> .env
cat .env
- name: Build frontend
run: cd frontend && yarn build
working-directory: frontend
run: yarn build
id: build-frontend

- name: Run Playwright tests
run: cd frontend && yarn playwright test
working-directory: frontend
run: yarn playwright test

- uses: actions/upload-artifact@v4
if: always()
Expand Down

0 comments on commit 05eefa9

Please sign in to comment.