Skip to content

Delete package-lock.json #43

Delete package-lock.json

Delete package-lock.json #43

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://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Npm publish workflow
on:
release:
types: [created]
pull_request:
branches:
- npm
push:
branches:
- npm
- dev
jobs:
# install:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 16
# - run: npm i
publish-npm:
# needs: install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm i
- run: pnpm run tsc
- run: pnpm publish -r --dry-run
working-directory: ./yuque-tools-cli
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_WORKFLOW}}