ci: run npx prettier --write **.yml; ensure it is run on all .yml files, not just the ones in the .github/workflows/ folder

This commit is contained in:
Delyan Angelov 2024-09-12 11:43:03 +03:00
parent efff766665
commit efe709eb34
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
2 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@ name: Workflow Lint
## or just: `npm install --save-dev --save-exact prettier`
## If you already have `prettier` installed, to run it locally,
## just run: `npx prettier --check .github/**/**.yml` .
## just run: `npx prettier --check **.yml` .
on:
push:
@ -22,4 +22,4 @@ jobs:
- name: Verify formatting
uses: creyD/prettier_action@v4.3
with:
prettier_options: --check .github/**/**.yml
prettier_options: --check **.yml

View File

@ -1,4 +1,4 @@
version: '3'
version: "3"
services:
server:
container_name: autobahn_server
@ -16,6 +16,6 @@ services:
- "8081:8080"
client:
container_name: autobahn_client
build:
dockerfile: vlib/net/websocket/tests/autobahn/ws_test/Dockerfile
build:
dockerfile: vlib/net/websocket/tests/autobahn/ws_test/Dockerfile
context: ../../../../../