Skip to content

Commit 7b0edc4

Browse files
committed
* In main.yml
- Move prettier check to after npm install
1 parent 616cd0c commit 7b0edc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616

17-
- name: Check formatting
18-
run: npm run format:check
19-
2017
- uses: actions/setup-node@v4
2118
with:
2219
node-version-file: package.json
@@ -26,6 +23,9 @@ jobs:
2623
# - run: npm ci
2724
- run: npm install --no-package-lock
2825

26+
- name: Check formatting
27+
run: npm run format:check
28+
2929
- name: Check syntax
3030
run: npm run lint
3131

0 commit comments

Comments
 (0)