Skip to content

test: workflow 调试 #51

test: workflow 调试

test: workflow 调试 #51

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: pnpm/action-setup@v2
# with:
# node-version: 16
# registry-url: https://registry.npmjs.org/
# - run: pnpm install
# - run: pnpm run tsc
# - run: pnpm publish -r --dry-run
# env:
# NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_WORKFLOW}}
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: pnpm install
run: pnpm run tsc

Check failure on line 61 in .github/workflows/npm-publish.yml

View workflow run for this annotation

GitHub Actions / Npm publish workflow

Invalid workflow file

The workflow is not valid. .github/workflows/npm-publish.yml (Line: 61, Col: 7): 'run' is already defined
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_WORKFLOW}}