Skip to content

Commit d027dd0

Browse files
committed
Format yanl files
1 parent dd238ad commit d027dd0

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
push:
55
branches: [main]
66
paths:
7-
- 'docs/**'
8-
- '.github/workflows/deploy-docs.yml'
9-
workflow_dispatch: # Allow manual triggers
7+
- "docs/**"
8+
- ".github/workflows/deploy-docs.yml"
9+
workflow_dispatch: # Allow manual triggers
1010

1111
# Sets permissions for GitHub Pages deployment
1212
permissions:
@@ -26,7 +26,7 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v4
2828
with:
29-
fetch-depth: 0 # For lastUpdated feature
29+
fetch-depth: 0 # For lastUpdated feature
3030

3131
- name: Retrieve Node.js version
3232
id: node-version
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/setup-node@v4
3737
with:
3838
node-version: ${{ steps.node-version.outputs.node-version }}
39-
cache: 'npm'
39+
cache: "npm"
4040
cache-dependency-path: docs/package-lock.json
4141

4242
- name: Setup Pages

.github/workflows/format.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
15+
1616
- name: Cache cargo dependencies
1717
uses: actions/cache@v4
1818
with:
@@ -23,7 +23,7 @@ jobs:
2323
~/.cargo/git/db/
2424
target/
2525
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
26-
26+
2727
- name: Retrieve Rust version
2828
id: rust-version
2929
run: echo "rust-version=$(grep '^rust ' .tool-versions | awk '{print $2}')" >> $GITHUB_OUTPUT
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Add wasm32-wasi target
3939
run: rustup target add wasm32-wasip1
40-
40+
4141
- name: Run cargo fmt
4242
uses: actions-rust-lang/rustfmt@v1
4343

@@ -49,7 +49,7 @@ jobs:
4949
defaults:
5050
run:
5151
working-directory: crates/js/lib
52-
52+
5353
steps:
5454
- uses: actions/checkout@v4
5555

@@ -58,20 +58,20 @@ jobs:
5858
working-directory: .
5959
run: echo "node-version=$(grep '^nodejs ' .tool-versions | awk '{print $2}')" >> $GITHUB_OUTPUT
6060
shell: bash
61-
61+
6262
- name: Use Node.js
6363
uses: actions/setup-node@v4
6464
with:
6565
node-version: ${{ steps.node-version.outputs.node-version }}
66-
cache: 'npm'
66+
cache: "npm"
6767
cache-dependency-path: crates/js/lib/package.json
6868

6969
- name: Install dependencies
7070
run: npm ci
7171

7272
- name: Run ESLint
7373
run: npm run lint
74-
74+
7575
- name: Run Prettier (check)
7676
run: npm run format
7777

@@ -80,7 +80,7 @@ jobs:
8080
defaults:
8181
run:
8282
working-directory: crates/js/lib
83-
83+
8484
steps:
8585
- uses: actions/checkout@v4
8686

@@ -89,19 +89,19 @@ jobs:
8989
working-directory: .
9090
run: echo "node-version=$(grep '^nodejs ' .tool-versions | awk '{print $2}')" >> $GITHUB_OUTPUT
9191
shell: bash
92-
92+
9393
- name: Use Node.js
9494
uses: actions/setup-node@v4
9595
with:
9696
node-version: ${{ steps.node-version.outputs.node-version }}
97-
cache: 'npm'
97+
cache: "npm"
9898
cache-dependency-path: crates/js/lib/package.json
9999

100100
- name: Install dependencies
101101
run: npm ci
102102

103103
- name: Run ESLint
104104
run: npm run lint
105-
105+
106106
- name: Run Prettier (check)
107-
run: npm run format
107+
run: npm run format

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
uses: actions/setup-node@v4
6363
with:
6464
node-version: ${{ steps.node-version.outputs.node-version }}
65-
cache: 'npm'
65+
cache: "npm"
6666
cache-dependency-path: crates/js/lib/package.json
6767

6868
- name: Install dependencies

0 commit comments

Comments
 (0)