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 70746be commit ddb5d80Copy full SHA for ddb5d80
.github/workflows/run-eslint-check.yaml
@@ -0,0 +1,18 @@
1
+name: Run ESLint check
2
+
3
+on:
4
+ workflow_call:
5
+ workflow_dispatch:
6
7
+jobs:
8
+ run-eslint-check:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v4
13
14
+ - name: Set up project
15
+ uses: ./.github/actions/setup-project
16
17
+ - name: Run ESLint check
18
+ run: yarn eslint .
.github/workflows/run-prettier-check.yaml
+name: Run Prettier check
+ run-prettier-check:
+ - name: Run Prettier check
+ run: yarn prettier --check .
0 commit comments