-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 920 Bytes
/
npm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 }}