mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
47e6ce9083
* build test test test Update action.yml Update action.yml test test Update action.yml Update action.yml Update action.yml test test Update ci.yml Update ci.yml test test test test Update action.yml test Update ci.yml Update e2e-ci.yml test * Update ci.yml * Update plugin-generator-e2e.yaml * test * test * test * test * Update e2e-ci.yml * Update e2e-ui.yml * test * Update ci.yml * Update ci.yml * Update action.yml * Update action.yml * Update package.json * Update static-data.yml * Update static-data.yml * Update website.yml * test * Update ui-components.yml * Update ui-components.yml * Update ui-components.yml
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
name: E2E Generator Verdaccio Plugin
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
|
|
concurrency:
|
|
group: generator-plugin-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
e2e-plugin-generator:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [20, 22, 23]
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- name: Build application with Node ${{ matrix.node_version }}
|
|
uses: ./.github/actions/build-app
|
|
with:
|
|
node-version: ${{ matrix.node_version }}
|
|
- name: install verdaccio
|
|
run: npm install -g verdaccio@5
|
|
- name: Start server
|
|
run: verdaccio -c e2e/docker/generator-e2e/generator.yaml &
|
|
- name: ping server
|
|
run: curl http://localhost:4873/-/ping
|
|
- name: login
|
|
run: npx npm-cli-login -u test -p test -e test@domain.test -r http://localhost:4873
|
|
- name: publish
|
|
run: pnpm local:publish
|
|
- name: install yeoman
|
|
run: npm install -g yo@4 --loglevel=info
|
|
- name: install generator
|
|
run: npm install -g generator-verdaccio-plugin --loglevel=info --registry http://localhost:4873
|
|
# Future: add a test to verify the plugin is working with prompt
|