Skip to content

test(integration): add NIP-62 vanish tests and fix test enviroment (#… #14

test(integration): add NIP-62 vanish tests and fix test enviroment (#…

test(integration): add NIP-62 vanish tests and fix test enviroment (#… #14

Workflow file for this run

name: Changesets Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
environment: release
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
- name: Install package dependencies
run: npm ci
- name: Create Release Pull Request or Publish
uses: changesets/action@v1
with:
version: npm run changeset:version
publish: npm run changeset:tag
createGithubReleases: true
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PAT }}