88 schedule : [cron: "40 1 * * *"]
99
1010jobs :
11-
1211 commitsar :
1312 name : Verify commit messages
1413 runs-on : ubuntu-22.04
4241 - uses : actions/setup-python@v5
4342 with :
4443 python-version : 3.11
45- cache : ' pip'
46- cache-dependency-path : ' **/requirements-*.txt'
44+ cache : " pip"
45+ cache-dependency-path : " **/requirements-*.txt"
4746
4847 - name : Start background server
4948 run : |
@@ -205,15 +204,15 @@ jobs:
205204 yarn build --target aarch64-unknown-linux-musl &&
206205 /aarch64-linux-musl-cross/bin/aarch64-linux-musl-strip *.node
207206 node :
208- - ' 18 '
209- - ' 20 '
207+ - " 18 "
208+ - " 20 "
210209
211210 name : NodeJS ${{ matrix.node }} on ${{ matrix.settings.target }}
212211 runs-on : ${{ matrix.settings.host }}
213212 env :
214213 DEBUG : napi:*
215214 APP_NAME : css-inline
216- MACOSX_DEPLOYMENT_TARGET : ' 10.13'
215+ MACOSX_DEPLOYMENT_TARGET : " 10.13"
217216 steps :
218217 - uses : actions/checkout@v4
219218
@@ -286,7 +285,7 @@ jobs:
286285 if : ${{ matrix.settings.docker }}
287286 with :
288287 image : ${{ matrix.settings.docker }}
289- 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/bindings/javascript'
288+ 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/bindings/javascript"
290289 run : ${{ matrix.settings.build }}
291290
292291 - name : Build
@@ -328,7 +327,7 @@ jobs:
328327 uses : addnab/docker-run-action@v3
329328 with :
330329 image : node:${{ matrix.node }}-slim
331- options : ' --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build/bindings/javascript'
330+ options : " --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build/bindings/javascript"
332331 run : |
333332 set -e
334333 yarn test
@@ -338,7 +337,7 @@ jobs:
338337 uses : addnab/docker-run-action@v3
339338 with :
340339 image : node:${{ matrix.node }}-alpine
341- options : ' --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build/bindings/javascript'
340+ options : " --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build/bindings/javascript"
342341 run : |
343342 set -e
344343 yarn test
@@ -348,7 +347,7 @@ jobs:
348347 uses : addnab/docker-run-action@v3
349348 with :
350349 image : node:${{ matrix.node }}-bullseye-slim
351- options : ' --platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build/bindings/javascript'
350+ options : " --platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build/bindings/javascript"
352351 run : |
353352 set -e
354353 yarn test
@@ -358,7 +357,7 @@ jobs:
358357 fail-fast : false
359358 matrix :
360359 os : [ubuntu-22.04, macos-12, windows-2022]
361- python-version : [' 3.7', ' 3.8', ' 3.9', ' 3.10', ' 3.11', ' 3.12' ]
360+ python-version : [" 3.7", " 3.8", " 3.9", " 3.10", " 3.11", " 3.12" ]
362361
363362 name : Python ${{ matrix.python-version }} on ${{ matrix.os }}
364363 runs-on : ${{ matrix.os }}
@@ -371,8 +370,8 @@ jobs:
371370 with :
372371 python-version : ${{ matrix.python-version }}
373372 architecture : x64
374- cache : ' pip'
375- cache-dependency-path : ' **/requirements-*.txt'
373+ cache : " pip"
374+ cache-dependency-path : " **/requirements-*.txt"
376375
377376 - run : python -m pip install -r requirements/dev.txt
378377 working-directory : ./bindings/python
@@ -385,12 +384,8 @@ jobs:
385384 strategy :
386385 fail-fast : false
387386 matrix :
388- os : [
389- ubuntu-22.04,
390- macos-12,
391- windows-2022
392- ]
393- ruby-version : ['2.7', '3.2']
387+ os : [ubuntu-22.04, macos-12, windows-2022]
388+ ruby-version : ["2.7", "3.2"]
394389
395390 name : Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
396391 runs-on : ${{ matrix.os }}
@@ -521,8 +516,8 @@ jobs:
521516 - uses : actions/setup-python@v5
522517 with :
523518 python-version : 3.11
524- cache : ' pip'
525- cache-dependency-path : ' **/requirements-*.txt'
519+ cache : " pip"
520+ cache-dependency-path : " **/requirements-*.txt"
526521
527522 - name : Start background server
528523 run : |
0 commit comments