Skip to content

Commit

Permalink
[fix] syntax issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyBoWu committed Mar 29, 2024
1 parent df901eb commit f34e9a9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,19 @@ jobs:
run: pnpm eslint .
# Ensure you have a lint script in your package.json

- name: Set env
- name: Load Environment Variables
run: echo "Load environment variables"
env:
API_BASE_URL: ${{ vars.API_BASE_URL }}
API_PREFIX: ${{ vars.API_PREFIX }}
API_KEY: ${{ secrets.API_KEY }}

- name: Run Tests
run: pnpm exec playwright test
env:
API_BASE_URL: ${{ vars.API_BASE_URL }}
API_PREFIX: ${{ vars.API_PREFIX }}
API_KEY: ${{ secrets.API_KEY }}
# Ensure you have a test:integration script in your package.json for your API integration tests

- name: Upload Test Results
Expand Down

0 comments on commit f34e9a9

Please sign in to comment.