Skip to content

chore: use pnpm and changeset #28

chore: use pnpm and changeset

chore: use pnpm and changeset #28

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: NPM-PUBLISH
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
publish-npm:
name: Release
if: ${{ github.repository_owner == 'liruifengv' }}
runs-on: ubuntu-latest
steps:

Check failure on line 17 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm install pnpm -g
- run: pnpm install
- uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm run publish
commit: '[ci] release'
title: '[ci] release'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}