Skip to content

chore: add automation scripts for automatically updating the repo (#7) #31

chore: add automation scripts for automatically updating the repo (#7)

chore: add automation scripts for automatically updating the repo (#7) #31

Workflow file for this run

name: ci
on: [push, pull_request]
concurrency:
group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}"
cancel-in-progress: true
jobs:
deno:
if: |
github.event_name == 'push' ||
!startsWith(github.event.pull_request.head.label, 'denoland:')
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: denoland/setup-deno@v2
with:
deno-version: canary
- uses: Swatinem/rust-cache@v2
with:
workspaces: src/rs_lib
- name: build
run: deno task wasmbuild
- name: fmt
run: deno fmt --check
- name: lint
run: deno lint
- name: check
run: deno check --doc
- name: test
run: deno test -A
jsr:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: denoland/setup-deno@v2
with:
deno-version: canary
- uses: Swatinem/rust-cache@v2
with:
workspaces: src/rs_lib
- name: build
run: deno task wasmbuild
- name: Publish to JSR on tag
run: deno run -A jsr:@david/publish-on-tag@0.2.0