-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5342eb6
commit 6f0d3d9
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# 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: Publish PNPM Package to NPM | ||
|
||
|
||
# You may pin to the exact commit or the version. | ||
# uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 | ||
|
||
with: | ||
# Version of pnpm to install | ||
version: # optional | ||
# Where to store pnpm files | ||
dest: # optional, default is ~/setup-pnpm | ||
# If specified, run `pnpm install` | ||
run_install: # optional, default is null | ||
# File path to the package.json to read "packageManager" configuration | ||
package_json_file: # optional, default is package.json | ||
# When set to true, @pnpm/exe, which is a Node.js bundled package, will be installed, enabling using pnpm without Node.js. | ||
standalone: # optional, default is false | ||
|
||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
- uses: pnpm/[email protected] | ||
with: | ||
node-version: 16 | ||
- run: pnpm install --frozen-lockfile | ||
- run: pnpm test | ||
|
||
publish-npm: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
registry-url: https://registry.npmjs.org/ | ||
- run: pnpm install --frozen-lockfile | ||
- run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |