mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
79c1fedc1b
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: E2E UI
|
|
|
|
on: [pull_request]
|
|
permissions:
|
|
contents: read
|
|
concurrency:
|
|
group: e2e-ui-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: UI Test E2E
|
|
services:
|
|
verdaccio:
|
|
image: verdaccio/verdaccio:5
|
|
ports:
|
|
- 4873:4873
|
|
env:
|
|
NODE_ENV: production
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
|
|
- name: Use Node
|
|
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- name: Install pnpm
|
|
run: |
|
|
corepack enable
|
|
corepack prepare
|
|
- name: Install
|
|
run: pnpm install --reporter=silence --registry http://localhost:4873
|
|
- name: build
|
|
run: pnpm build
|
|
- name: Test UI
|
|
run: pnpm test:e2e:ui
|
|
- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v3
|
|
with:
|
|
name: videos
|
|
path: /home/runner/work/verdaccio/verdaccio/e2e/ui/cypress/videos
|