Skip to content

chore: add CI and publishing via CI #2

chore: add CI and publishing via CI

chore: add CI and publishing via CI #2

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
submodules: true

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 19, Col: 9): Unexpected value 'submodules' .github/workflows/ci.yml (Line: 47, Col: 9): Unexpected value 'submodules'
- uses: denoland/setup-deno@v2
with:
deno-version: canary
- name: build
run: deno task build
- 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
submodules: true
- uses: denoland/setup-deno@v2
with:
deno-version: canary
- name: build
run: deno task build
- name: Publish to JSR on tag
run: deno run -A jsr:@david/publish-on-tag@0.2.0