Merge pull request #164 from COS301-SE-2024/fix/ui-imporvements #18
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 Test WriteMe App | |
on: | |
push: | |
branches: | |
- dev | |
paths: | |
- "apps/writeme/**" | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
actions: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node Install | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: PNPM Install | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
run_install: false | |
# - name: Get pnpm store directory | |
# shell: bash | |
# run: | | |
# echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
# - uses: actions/cache@v4 | |
# name: Setup pnpm cache | |
# with: | |
# path: ${{ env.STORE_PATH }} | |
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
# restore-keys: | | |
# ${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install Playwright Browsers | |
run: pnpm dlx playwright install --with-deps | |
- name: Install Playwright Browser Cache | |
run: pnpm exec playwright install | |
- name: Run E2E Tests | |
run: pnpm exec nx run writeme-e2e:e2e-ci | |
- uses: actions/upload-artifact@v4 | |
if: ${{ !cancelled() }} | |
with: | |
name: playwright-report | |
path: dist/.playwright/apps/writeme-e2e/playwright-report/ | |
retention-days: 30 |