Skip to content

Commit 0179478

Browse files
committed
chore: fix lint script
1 parent e1235b9 commit 0179478

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/lint.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ jobs:
66
eslint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
10-
- run: yarn
11-
- run: yarn lint
9+
- name: Check out repository code
10+
uses: actions/checkout@v4
11+
with:
12+
persist-credentials: false
13+
14+
- name: Setup node
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: 20
18+
cache: yarn
19+
20+
- name: Run linter
21+
run: yarn lint

0 commit comments

Comments
 (0)