chore: bump v 1.2.1 #43
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: test, lint & typecheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: ./.github/setup | |
- name: Lint | |
run: bun lint | |
- name: Typecheck | |
run: bun typecheck | |
- name: Test | |
run: bun run test | |
release: | |
name: release | |
needs: test | |
if: ${{ !contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'skip release') && github.event_name != 'pull_request' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: ./.github/setup | |
- name: Publish to NPM | |
run: bun run release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |