Closes #2213 This ended up being a bit of a variety PR, but primarily this fixes issues around archived item pages for crawls at URL locations we no longer support — specifically, crawls, which now live at `/orgs/{oid}/workflows/{workflow_id}/crawl/{crawl_id}`, rather than `/orgs/{oid}/items/crawl/{crawl_id}`, including the QA pages at sub-paths of these. Attempting to view a crawl at the old (unsupported) URL will now redirect you to the correct URL! Other changes include: - Updated links in various parts of the app — nothing should link to the old URL pattern anymore for crawls! - Improved `APIRouter` and `ViewState` typing - A couple extra `APIRouter` tests - An addition to the route definition for crawls at `/orgs/{oid}/items/crawl/{crawl_id}` that allows for redirections from QA review page URLs, rather than 404 errors — this was the actual reported problem! - Caching in CI for playwright tests - `needsLogin` conversion from the deprecated `LiteElement` to `BtrixElement`, along with all the components that use it --------- Co-authored-by: emma-sg <emma-sg@users.noreply.github.com>
84 lines
2.2 KiB
YAML
84 lines
2.2 KiB
YAML
name: Playwright Tests
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'frontend/src/**'
|
|
- 'frontend/*.json'
|
|
- 'frontend/*.js'
|
|
- 'frontend/*.ts'
|
|
|
|
jobs:
|
|
test:
|
|
timeout-minutes: 60
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
DEV_PASSWORD: ${{ secrets.DEV_PASSWORD }}
|
|
API_BASE_URL: ${{ secrets.API_BASE_URL }}
|
|
working-directory: ./frontend
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: 'yarn'
|
|
cache-dependency-path: frontend/yarn.lock
|
|
|
|
- name: Get installed Playwright version
|
|
working-directory: frontend
|
|
id: playwright-version
|
|
run: |
|
|
yarn add @yarnpkg/lockfile
|
|
echo "PLAYWRIGHT_VERSION=$(node scripts/get-resolved-playwright-version.js)" >> $GITHUB_ENV
|
|
|
|
- name: Cache playwright binaries
|
|
uses: actions/cache@v4
|
|
id: playwright-cache
|
|
with:
|
|
path: |
|
|
~/.cache/ms-playwright
|
|
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
|
|
|
|
- name: Install dependencies
|
|
working-directory: frontend
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Install Playwright Browsers
|
|
working-directory: frontend
|
|
env:
|
|
HUSKY: 0
|
|
run: yarn playwright install --with-deps
|
|
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
|
|
|
- name: Install Playwright Deps
|
|
working-directory: frontend
|
|
env:
|
|
HUSKY: 0
|
|
run: yarn playwright install-deps
|
|
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
|
|
|
- name: Create env file
|
|
run: |
|
|
cd frontend
|
|
touch .env
|
|
echo DEV_PASSWORD="${{ secrets.DEV_PASSWORD }}" >> .env
|
|
echo API_BASE_URL=${{ secrets.API_BASE_URL }} >> .env
|
|
cat .env
|
|
|
|
- name: Build frontend
|
|
run: cd frontend && yarn build
|
|
id: build-frontend
|
|
|
|
- name: Run Playwright tests
|
|
run: cd frontend && yarn playwright test
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
if: always()
|
|
with:
|
|
name: playwright-report
|
|
path: frontend/playwright-report/
|
|
retention-days: 30
|