-
Notifications
You must be signed in to change notification settings - Fork 96
50 lines (37 loc) · 1.04 KB
/
publish_jsr.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Publish to JSR
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
id-token: write
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Deno
uses: denoland/setup-deno@v1
- name: Convert to JSR package
run: deno run -A tools/convert_to_jsr.ts
- name: Format
run: deno fmt --check
- name: Lint
run: deno lint
- name: Documentation tests
run: deno test --doc client.ts mod.ts pool.ts client/ connection/ query/ utils/
- name: Build tests container
run: docker-compose build tests
- name: Run tests
run: docker-compose run tests
- name: Publish (dry run)
if: startsWith(github.ref, 'refs/tags/') == false
run: deno publish --dry-run
- name: Publish (real)
if: startsWith(github.ref, 'refs/tags/')
run: deno publish