Skip to content

Commit 29aa4c3

Browse files
committed
messed up indenting
1 parent 31a5596 commit 29aa4c3

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

.github/workflows/gh-pages.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v4
1616

17-
- name: Use Node.js 22
17+
- name: Setup Node.js 22
1818
uses: actions/setup-node@v4
1919
with:
2020
node-version: 22.x
2121
cache: 'npm'
22+
23+
- name: Build project
2224
run: |
2325
npm ci
2426
npm run build

.github/workflows/run-linting.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@v4
1717

18-
- name: Run ESLint
18+
- name: Setup Node.js 22
1919
uses: actions/setup-node@v4
2020
with:
2121
node-version: 22.x
2222
cache: 'npm'
23-
run: |
24-
npm ci
25-
npm run lint-no-fix
23+
24+
- name: Run ESLint
25+
run: |
26+
npm ci
27+
npm run lint-no-fix

.github/workflows/run-tests.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ jobs:
2020
- name: Checkout
2121
uses: actions/checkout@v4
2222

23-
- name: Run tests on Node.js ${{ matrix.node-version }}
23+
- name: Setup Node.js ${{ matrix.node-version }}
2424
uses: actions/setup-node@v4
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
cache: 'npm'
28-
run: |
29-
npm ci
30-
npm run test:unit
31-
npm run test:e2e
28+
29+
- name: Run tests on Node.js ${{ matrix.node-version }}
30+
run: |
31+
npm ci
32+
npm run test:unit
33+
npm run test:e2e

0 commit comments

Comments
 (0)