Merge branch 'jk/418-e2e-tests-ci' of https://github.com/mitodl/mit-o… #2
Workflow file for this run
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: E2E-testing | |
on: [push] | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Start web service | |
run: | | |
cp .env.example .env | |
docker-compose up web nginx | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn workspace e2e_testing install | |
- name: Install Playwright browsers | |
run: yarn workspace e2e_testing exec playwright install --with-deps | |
- name: Run Playwright tests | |
run: yarn workspace e2e_testing test | |
env: | |
BASE_URL: http://localhost:8063 | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: e2e_testing/playwright-report/ | |
retention-days: 30 |