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 27aa555 commit 2761029Copy full SHA for 2761029
.github/workflows/lint_format.yml
@@ -0,0 +1,28 @@
1
+name: Lint Check Format
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v3
16
17
+ - name: Set up Node.js
18
+ uses: actions/setup-node@v3
19
+ with:
20
+ node-version: 16
21
22
+ - name: Install npm and dependencies
23
+ run: |
24
+ npm ci
25
26
+ - name: Run lint
27
28
+ npm run lint:format
.github/workflows/check_links.yml renamed to .github/workflows/lint_links.yml
@@ -1,10 +1,9 @@
-name: Check Markdown links
+name: Lint Check Markdown Links
on:
push:
branches:
- master
- - dev
pull_request:
schedule:
# run CI at 09:00, on day 1 of the month even if no PRs/merges occur
0 commit comments