Skip to content

Commit 86cc3bb

Browse files
committed
Fix deno fmt
1 parent 776d5be commit 86cc3bb

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
- name: Setup Node
3030
uses: actions/setup-node@v4
3131
with:
32-
node-version: '22.x' # Build files using a fixed node version
33-
registry-url: 'https://registry.npmjs.org'
32+
node-version: "22.x" # Build files using a fixed node version
33+
registry-url: "https://registry.npmjs.org"
3434

3535
- name: Build npm files
3636
run: deno task npm
@@ -51,7 +51,21 @@ jobs:
5151
runs-on: ubuntu-latest
5252
strategy:
5353
matrix:
54-
node-version: [7.x, 8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x, 17.x, 18.x, 19.x]
54+
node-version: [
55+
7.x,
56+
8.x,
57+
9.x,
58+
10.x,
59+
11.x,
60+
12.x,
61+
13.x,
62+
14.x,
63+
15.x,
64+
16.x,
65+
17.x,
66+
18.x,
67+
19.x,
68+
]
5569
include:
5670
- command: test
5771
- command: test:use-openssl-ca
@@ -69,7 +83,7 @@ jobs:
6983
uses: actions/setup-node@v4
7084
with:
7185
node-version: ${{ matrix.node-version }}
72-
registry-url: 'https://registry.npmjs.org'
86+
registry-url: "https://registry.npmjs.org"
7387

7488
- name: Download build files
7589
uses: actions/download-artifact@v4
@@ -102,7 +116,7 @@ jobs:
102116
uses: actions/setup-node@v4
103117
with:
104118
node-version: ${{ matrix.node-version }}
105-
registry-url: 'https://registry.npmjs.org'
119+
registry-url: "https://registry.npmjs.org"
106120

107121
- name: Download build files
108122
uses: actions/download-artifact@v4

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
paths:
8-
- 'version.ts'
8+
- "version.ts"
99

1010
jobs:
1111
release:
@@ -33,8 +33,8 @@ jobs:
3333
- name: Setup Node
3434
uses: actions/setup-node@v4
3535
with:
36-
node-version: '22.x'
37-
registry-url: 'https://registry.npmjs.org'
36+
node-version: "22.x"
37+
registry-url: "https://registry.npmjs.org"
3838

3939
- name: Build npm files
4040
run: deno task npm

0 commit comments

Comments
 (0)