Skip to content

chore: update lockfile #80

chore: update lockfile

chore: update lockfile #80

Workflow file for this run

name: CI
on: push
jobs:
test-library:
name: Deno test
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- name: Run tests
run: deno test
- name: Get tag version
if: startsWith(github.ref, 'refs/tags/')
id: get_tag_version
run: echo ::set-output name=TAG_VERSION::${GITHUB_REF/refs\/tags\//}
- uses: actions/setup-node@v2
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: npm build
run: deno task build:npm ${{steps.get_tag_version.outputs.TAG_VERSION}}
- name: jsr publish
run: deno run -A jsr:@david/publish-on-tag@0.1.3
- name: npm publish
if: startsWith(github.ref, 'refs/tags/')
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
cd npm
npm publish