Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

chore(deps): update babel monorepo #704

chore(deps): update babel monorepo

chore(deps): update babel monorepo #704

Workflow file for this run

name: E2E
on: [pull_request]
jobs:
e2e:
runs-on: ubuntu-latest
services:
verdaccio:
image: verdaccio/verdaccio:5
ports:
- 4873:4873
strategy:
matrix:
node-version: [16, 18, 19]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
run: npm i -g pnpm@latest-8
- uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}
- name: install
run: pnpm install
- name: lint
run: pnpm run lint
- name: build
run: pnpm build
- name: login
run: npx npm-cli-login -u test -p 1234 -e [email protected] -r http://localhost:4873
- name: pre-release
run: npm version patch --no-git-tag-version
- name: publish
run: pnpm publish --registry http://localhost:4873 --no-git-checks
- name: install yeoman
run: npm install -g yo
- name: install generator
run: npm install -g generator-verdaccio-plugin --registry http://localhost:4873