We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f60c0 commit 03c137fCopy full SHA for 03c137f
.github/workflows/eslint.yml
@@ -0,0 +1,19 @@
1
+name: ESLint
2
+
3
+on: [pull_request]
4
5
+jobs:
6
+ eslint:
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
18
+ cd rt
19
+ npx eslint src
.github/workflows/prettier.yml
+name: Prettier
+ - name: Run Prettier
+ npx prettier --check src
0 commit comments