aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/deno.yml
blob: 4f861bd66cbdf065ad4c1e757682f946c2a92547 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Deno

on:
  push:
    paths:
      - "src/packages/locusts/mod.ts"
      - "**/deno.json"
      - ".github/workflows/deno.yml"
  pull_request:
    paths:
      - "src/packages/locusts/mod.ts"
      - "**/deno.json"
      - ".github/workflows/deno.yml"

jobs:
  lint-test-and-publish:
    name: Lint and Test
    runs-on: ubuntu-latest
    permissions:
      contents: read
      id-token: write
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Setup Deno
        uses: denoland/setup-deno@v2
        with:
          deno-version: v2.x
      - name: Lint
        run: |
         deno lint
        #  Weirdly broken
        #  deno fmt --check
      - name: Test
        run: deno test src/packages/locusts/mod.ts
      - name: Publish on Tag
        run: deno run -A jsr:@david/publish-on-tag --allow-dirty