Skip to content

Commit f4a1a26

Browse files
fix action
1 parent 3c2d0c6 commit f4a1a26

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/eslint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ name: ESLint
1111

1212
on:
1313
push:
14-
branches: [ "main" ]
14+
branches: ["main"]
1515
pull_request:
1616
# The branches below must be a subset of the branches above
17-
branches: [ "main" ]
17+
branches: ["main"]
1818
schedule:
19-
- cron: '15 10 * * 5'
19+
- cron: "15 10 * * 5"
2020

2121
jobs:
2222
eslint:
@@ -43,7 +43,7 @@ jobs:
4343
run_install: false
4444

4545
- name: Install depends
46-
run: pnpm setup
46+
run: pnpm run setup
4747

4848
- name: Run ESLint
4949
run: pnpm lint #--fix

.github/workflows/pretter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run_install: false
3232

3333
- name: Install depends
34-
run: pnpm setup
34+
run: pnpm run setup
3535

3636
- name: Fretit
3737
run: pnpm pretit

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run_install: false
2828

2929
- name: Install depends
30-
run: pnpm setup
30+
run: pnpm run setup
3131

3232
- name: Typing
3333
run: pnpm typing
@@ -54,7 +54,7 @@ jobs:
5454
run_install: false
5555

5656
- name: Install depends
57-
run: pnpm setup
57+
run: pnpm run setup
5858

5959
- name: Test
6060
run: pnpm test

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
run_install: false
2121
- name: Test
2222
run: |
23-
pnpm setup
23+
pnpm run setup
2424
pnpm test

.github/workflows/try-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run_install: false
3232

3333
- name: Install depends
34-
run: pnpm setup
34+
run: pnpm run setup
3535

3636
- name: Build "main"
3737
run: pnpm build

.github/workflows/typing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run_install: false
3232

3333
- name: Install depends
34-
run: pnpm setup
34+
run: pnpm run setup
3535

3636
- name: Typing
3737
run: pnpm typing

0 commit comments

Comments
 (0)