[Snyk] Security upgrade express from 4.19.2 to 4.21.2 #68
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 Generator Verdaccio Plugin | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
e2e-plugin-generator: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18,20, 21] | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install pnpm | |
run: | | |
corepack enable | |
corepack install | |
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v3 | |
with: | |
path: ~/.pnpm-store | |
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: install | |
run: pnpm install | |
- name: build | |
run: pnpm build | |
- 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 [email protected] -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 |