Skip to content

0.4.10

0.4.10 #28

Workflow file for this run

name: Publish on JSR
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- uses: denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba # v1.1.4
with:
deno-version: v1.x
- uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
name: Set up Deno cache
with:
path: |
~/.deno
~/.cache/deno
key: ${{ runner.os }}-deno-${{ hashFiles('**/pnpm-lock.yaml') }}
- run: |
deno lint \
--ignore=node_modules src tests \
--rules-exclude=no-explicit-any \
./*.ts tests/**/*.ts
deno publish --dry-run
deno publish