This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
Merge pull request #57 from palladians/feat/add-testworld #74
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: Minaverse Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build_and_test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
env: | |
NEXT_PUBLIC_APP_URL: http://localhost:3000 | |
NEXT_PUBLIC_CONTENT_API_URL: ${{ vars.NEXT_PUBLIC_CONTENT_API_URL }} | |
NEXT_PUBLIC_APP_ID: ${{ vars.NEXT_PUBLIC_APP_ID }} | |
NEXT_PUBLIC_SENTINEL_API_URL: ${{ vars.NEXT_PUBLIC_SENTINEL_API_URL }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build app | |
run: pnpm build | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps chromium | |
- name: Run Playwright tests | |
run: pnpm test | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |