v0.2.0 #1
Workflow file for this run
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: Publish NPM Package | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: check format | |
run: deno fmt --check | |
- name: check linting | |
run: deno lint | |
- name: Publish package to JSR | |
run: | | |
deno run -A ./scripts/prep-jsr.ts ${{ github.ref }} | |
deno publish --allow-dirty | |
- name: build npm package | |
run: deno run -A ./scripts/build_npm.ts ${{ github.ref }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
registry-url: "https://registry.npmjs.org" | |
- name: publish npm package | |
run: | | |
cd npm | |
npm publish --access=public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |