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 7ae5c75 commit bd639d3Copy full SHA for bd639d3
.github/workflows/check.yml
@@ -1,8 +1,8 @@
1
-on:
2
- [pull_request]
3
-
4
name: Check
5
+on:
+ pull_request:
+
6
jobs:
7
check:
8
name: Run Unit Tests
.github/workflows/lint.yml
@@ -0,0 +1,16 @@
+name: Lint
+jobs:
+ lint:
+ name: Run Linter
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout
12
+ uses: actions/checkout@v5
13
+ - name: Run eslint
14
+ run: |
15
+ npm ci
16
+ npm run lint
0 commit comments