Skip to content

chore: release v0.0.1 #2

chore: release v0.0.1

chore: release v0.0.1 #2

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install
run: corepack enable && pnpm install --frozen-lockfile
- name: Run Lint
run: pnpm run lint
- name: Run Typecheck
run: pnpm run typecheck
- name: Run Tests
run: pnpm run test
release:
runs-on: ubuntu-latest
needs: [check]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Install
run: corepack enable
- name: Publish to NPM
run: pnpm publish --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true
- name: Publish Github Release
run: npx changelogithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}