Skip to content

Commit 4c33eeb

Browse files
committed
Adds eslint workflow
1 parent 44bbdf1 commit 4c33eeb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Diff for: .github/workflows/lint.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ESLint
2+
on:
3+
pull_request:
4+
branches: ['*']
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
- ready_for_review
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Install modules
16+
run: npm i -g pnpm@9 && pnpm install
17+
- name: Run ESLint
18+
run: pnpm run lint

0 commit comments

Comments
 (0)