Skip to content

Commit 0bb6ed0

Browse files
author
Gideon
committed
FIX: Trying another way of setting up ESlint to avoid it failing on every commit.
1 parent 63414a3 commit 0bb6ed0

File tree

2 files changed

+185
-188
lines changed

2 files changed

+185
-188
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
13-
with:
14-
node-version: 16
15-
- uses: sibiraj-s/action-eslint@v2
16-
with:
17-
eslint-args: '--ignore-path=.gitignore --quiet'
18-
extensions: 'js,jsx,ts,tsx'
19-
annotations: true
12+
- name: Install modules
13+
run: yarn
14+
- name: Run ESLint
15+
run: eslint . --ext .js,.jsx,.ts,.tsx`
16+
2017
vitest:
2118
runs-on: ubuntu-latest
2219
steps:

0 commit comments

Comments
 (0)