forked from home-assistant/home-assistant.io
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (37 loc) · 951 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: home-assistant.io Test
on: [push, pull_request]
jobs:
markdown-lint:
name: Lint Markdown
runs-on: ubuntu-latest
steps:
- name: Check out files from GitHub
uses: actions/[email protected]
- name: Setting up Node.js
uses: actions/[email protected]
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm install
env:
CI: true
- name: Run remark lint
run: npm run markdown:lint
textlint:
name: Lint Text
runs-on: ubuntu-latest
steps:
- name: Check out files from GitHub
uses: actions/[email protected]
- name: Setting up Node.js
uses: actions/[email protected]
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm install
env:
CI: true
- name: Run textlint
run: npm run textlint