Skip to content

chore: type check for both #5

chore: type check for both

chore: type check for both #5

Workflow file for this run

name: Publish NPM
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- uses: denoland/setup-deno@v1
- name: Publish package
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
run: |-
deno run -A dnt.ts
cd dnt
npm publish