mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-08 16:28:49 +00:00
22 lines
444 B
YAML
22 lines
444 B
YAML
name: publish npm package
|
|
|
|
on:
|
|
push:
|
|
tags: [v*]
|
|
|
|
jobs:
|
|
publish-npm:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- run: yarn --ignore-engines
|
|
- run: node build.js
|
|
- run: yarn test
|
|
- uses: JS-DevTools/npm-publish@v1
|
|
with:
|
|
token: ${{ secrets.NPM_TOKEN }}
|
|
greater-version-only: true
|