Commit 5db595e 1 parent 6c93c83 commit 5db595e Copy full SHA for 5db595e
File tree 2 files changed +27
-2
lines changed
2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+ on :
3
+ push :
4
+ branches : [main]
5
+ pull_request :
6
+ branches : [main]
7
+
8
+ jobs :
9
+ ci :
10
+ runs-on : macos-latest
11
+ steps :
12
+ - name : Checkout
13
+ uses : actions/checkout@v4
14
+
15
+ - name : Setup Deno
16
+ uses : denoland/setup-deno@v2
17
+
18
+ - name : Format
19
+ run : deno fmt --check
20
+
21
+ - name : Lint
22
+ run : deno lint
23
+
24
+ - name : Test
25
+ run : deno task test
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
permissions :
12
12
contents : read
13
- id-token : write # The OIDC ID token is used for authentication with JSR.
13
+ id-token : write # The OIDC ID token is used for authentication with JSR.
14
14
steps :
15
15
- uses : actions/checkout@v4
16
- - run : npx jsr publish
16
+ - run : npx jsr publish
You can’t perform that action at this time.
0 commit comments