Fix FRONTEND_ASSET_URL for e2e tests #1306
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test frontend | |
on: | |
push: | |
paths: | |
- 'frontend/**' | |
defaults: | |
run: | |
working-directory: frontend | |
jobs: | |
test_frontend: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- uses: actions/checkout@v4 | |
- run: 'yarn install' | |
- run: 'yarn vitest --run' |