@@ -2,20 +2,20 @@ name: CI
2
2
env :
3
3
DEBUG : napi:*
4
4
APP_NAME : growtopia-js
5
- MACOSX_DEPLOYMENT_TARGET : " 10.13"
5
+ MACOSX_DEPLOYMENT_TARGET : ' 10.13'
6
6
permissions :
7
7
contents : write
8
8
id-token : write
9
- " on " :
9
+ ' on ' :
10
10
push :
11
11
branches :
12
12
- main
13
13
tags-ignore :
14
- - " ** "
14
+ - ' ** '
15
15
paths-ignore :
16
- - " **/*.md"
16
+ - ' **/*.md'
17
17
- LICENSE
18
- - " **/*.gitignore"
18
+ - ' **/*.gitignore'
19
19
- .editorconfig
20
20
- docs/**
21
21
pull_request : null
@@ -136,7 +136,7 @@ jobs:
136
136
if : ${{ matrix.settings.docker }}
137
137
with :
138
138
image : ${{ matrix.settings.docker }}
139
- options : " --user 0:0 -v ${{ github.workspace }}/.cargo-cache/git/db:/usr/local/cargo/git/db -v ${{ github.workspace }}/.cargo/registry/cache:/usr/local/cargo/registry/cache -v ${{ github.workspace }}/.cargo/registry/index:/usr/local/cargo/registry/index -v ${{ github.workspace }}:/build -w /build"
139
+ options : ' --user 0:0 -v ${{ github.workspace }}/.cargo-cache/git/db:/usr/local/cargo/git/db -v ${{ github.workspace }}/.cargo/registry/cache:/usr/local/cargo/registry/cache -v ${{ github.workspace }}/.cargo/registry/index:/usr/local/cargo/registry/index -v ${{ github.workspace }}:/build -w /build'
140
140
run : ${{ matrix.settings.build }}
141
141
- name : Build
142
142
run : ${{ matrix.settings.build }}
@@ -161,8 +161,8 @@ jobs:
161
161
- host : windows-latest
162
162
target : x86_64-pc-windows-msvc
163
163
node :
164
- - " 18 "
165
- - " 20 "
164
+ - ' 18 '
165
+ - ' 20 '
166
166
runs-on : ${{ matrix.settings.host }}
167
167
steps :
168
168
- uses : actions/checkout@v4
@@ -194,8 +194,8 @@ jobs:
194
194
fail-fast : false
195
195
matrix :
196
196
node :
197
- - " 18 "
198
- - " 20 "
197
+ - ' 18 '
198
+ - ' 20 '
199
199
runs-on : ubuntu-latest
200
200
steps :
201
201
- uses : actions/checkout@v4
@@ -226,8 +226,8 @@ jobs:
226
226
fail-fast : false
227
227
matrix :
228
228
node :
229
- - " 18 "
230
- - " 20 "
229
+ - ' 18 '
230
+ - ' 20 '
231
231
runs-on : ubuntu-latest
232
232
steps :
233
233
- uses : actions/checkout@v4
@@ -260,8 +260,8 @@ jobs:
260
260
fail-fast : false
261
261
matrix :
262
262
node :
263
- - " 18 "
264
- - " 20 "
263
+ - ' 18 '
264
+ - ' 20 '
265
265
runs-on : ubuntu-latest
266
266
steps :
267
267
- uses : actions/checkout@v4
@@ -289,7 +289,7 @@ jobs:
289
289
uses : addnab/docker-run-action@v3
290
290
with :
291
291
image : node:${{ matrix.node }}-slim
292
- options : " --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
292
+ options : ' --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build'
293
293
run : |
294
294
set -e
295
295
yarn test
@@ -325,7 +325,7 @@ jobs:
325
325
uses : addnab/docker-run-action@v3
326
326
with :
327
327
image : node:lts-alpine
328
- options : " --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
328
+ options : ' --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build'
329
329
run : |
330
330
set -e
331
331
yarn test
@@ -337,8 +337,8 @@ jobs:
337
337
fail-fast : false
338
338
matrix :
339
339
node :
340
- - " 18 "
341
- - " 20 "
340
+ - ' 18 '
341
+ - ' 20 '
342
342
runs-on : ubuntu-latest
343
343
steps :
344
344
- uses : actions/checkout@v4
@@ -365,7 +365,7 @@ jobs:
365
365
uses : addnab/docker-run-action@v3
366
366
with :
367
367
image : node:${{ matrix.node }}-bullseye-slim
368
- options : " --platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build"
368
+ options : ' --platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build'
369
369
run : |
370
370
set -e
371
371
yarn test
0 commit comments