Skip to content

flake.lock: Update #191

flake.lock: Update

flake.lock: Update #191

Workflow file for this run

name: Release
on:
push:
branches: main
pull_request:
branches: main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chimeraant/[email protected]
- run: pnpm test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chimeraant/[email protected]
- run: pnpm lint
release:
needs: [
test,
lint
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chimeraant/[email protected]
- run: tsup
- run: semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}