Skip to content

Commit d905dd0

Browse files
committed
ci: run ESLint on pull requests
1 parent a3bdcbb commit d905dd0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/eslint.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: ESLint
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
check:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v5
10+
11+
- name: Install NPM dependencies
12+
run: |
13+
npm ci
14+
npm install -g typescript
15+
16+
- name: Run ESlint
17+
run: |
18+
cd rt
19+
npx eslint src

0 commit comments

Comments
 (0)