-
Notifications
You must be signed in to change notification settings - Fork 133
41 lines (34 loc) · 978 Bytes
/
ci.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
40
41
name: CI
on:
push:
branches-ignore:
- dependabot/**
paths:
- package*.json
- '**/*.md'
- .github/workflows/ci.yml
- .github/workflows/remark-lint-problem-matcher.json
pull_request:
paths:
- package*.json
- '**/*.md'
- .github/workflows/ci.yml
- .github/workflows/remark-lint-problem-matcher.json
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install npm dependencies
run: npm ci
- name: Lint markdown files
run: |
echo "::add-matcher::.github/workflows/remark-lint-problem-matcher.json"
npm test
- name: Lint YAML files
run: |
curl https://raw.githubusercontent.com/nodejs/node/HEAD/.yamllint.yaml -o .yamllint.yaml
yamllint .