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 eab7011 commit 62b8ad9Copy full SHA for 62b8ad9
.github/workflows/format.yml
@@ -0,0 +1,25 @@
1
+name: "Format"
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
8
+jobs:
9
+ format:
10
+ name: "Run ESLint"
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v2
15
16
+ - name: Set up Node.js
17
+ uses: actions/setup-node@v2
18
+ with:
19
+ node-version: '18'
20
21
+ - name: Install dependencies
22
+ run: npm install
23
24
+ - name: Run Prettier
25
+ run: npm run format
.github/workflows/formatter.yml
.github/workflows/linter.yml renamed to .github/workflows/lint.yml
@@ -1,13 +1,13 @@
-name: "Linter"
+name: "Lint"
on:
pull_request:
push:
branches: [main]
jobs:
- eslint:
- name: "Eslint Check"
+ lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
0 commit comments