2022-11-12 16:05:08 -05:00
|
|
|
name: E2E UI
|
|
|
|
|
|
|
|
on: [pull_request]
|
2024-11-28 04:53:05 -05:00
|
|
|
|
2022-11-12 16:05:08 -05:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2024-02-18 05:33:07 -05:00
|
|
|
concurrency:
|
2024-02-18 15:08:17 -05:00
|
|
|
group: e2e-ui-${{ github.ref }}
|
2024-11-28 04:53:05 -05:00
|
|
|
cancel-in-progress: true
|
2022-11-12 16:05:08 -05:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: UI Test E2E
|
|
|
|
services:
|
|
|
|
verdaccio:
|
2024-10-20 12:26:36 -05:00
|
|
|
image: verdaccio/verdaccio:6
|
2022-11-12 16:05:08 -05:00
|
|
|
ports:
|
|
|
|
- 4873:4873
|
|
|
|
env:
|
|
|
|
NODE_ENV: production
|
|
|
|
steps:
|
2024-11-02 04:02:18 -05:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-11-28 04:53:05 -05:00
|
|
|
- name: Build application with Node 20
|
|
|
|
uses: ./.github/actions/build-app
|
2022-11-12 16:05:08 -05:00
|
|
|
with:
|
2024-11-28 04:53:05 -05:00
|
|
|
node-version: 20
|
2022-11-12 16:05:08 -05:00
|
|
|
- name: Test UI
|
|
|
|
run: pnpm test:e2e:ui
|
2024-11-02 06:01:04 -05:00
|
|
|
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
|
2022-11-12 16:05:08 -05:00
|
|
|
with:
|
|
|
|
name: videos
|
|
|
|
path: /home/runner/work/verdaccio/verdaccio/e2e/ui/cypress/videos
|