Skip to content

Commit 2761029

Browse files
committed
Update github actions
1 parent 27aa555 commit 2761029

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

.github/workflows/lint_format.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
28+
npm run lint:format

.github/workflows/check_links.yml renamed to .github/workflows/lint_links.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
name: Check Markdown links
1+
name: Lint Check Markdown Links
22

33
on:
44
push:
55
branches:
66
- master
7-
- dev
87
pull_request:
98
schedule:
109
# run CI at 09:00, on day 1 of the month even if no PRs/merges occur

0 commit comments

Comments
 (0)