mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* chore(ci): use setup-node cache * fix: Consistent with the naming on the Node.js * fix: 还原命名 * fix: 1
69 lines
1.4 KiB
YAML
69 lines
1.4 KiB
YAML
name: Publish to NPM registry
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Add dev branch
|
|
run: git branch dev origin/dev
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: 'pnpm'
|
|
|
|
- name: Install dependencies
|
|
run: pnpm i --frozen-lockfile
|
|
|
|
- name: Lint
|
|
run: pnpm lint
|
|
|
|
- name: Test
|
|
run: pnpm test
|
|
|
|
publish:
|
|
needs: test
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- name: Get version
|
|
run: echo "TAG_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
|
|
- name: Get git head
|
|
run: echo "GIT_HEAD=${GITHUB_SHA}" >> $GITHUB_ENV
|
|
|
|
- name: Update npm
|
|
run: npm install npm@11.6.1 -g
|
|
|
|
- name: Build&publish
|
|
run: sh ./scripts/publish.sh
|
|
env:
|
|
TAG_VERSION: ${{env.TAG_VERSION}}
|
|
GIT_HEAD: ${{env.GIT_HEAD}}
|
|
FORCE_COLOR: 2
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NODE_OPTIONS: --max-old-space-size=4096
|