chore: upgrade to deno 44d489c811b5da3db5411926e85dc96985d9e2d3 #62
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |