Skip to content

Commit be6e86a

Browse files
committed
chore: Switch ECLint build to GitHub Actions
1 parent 44c2177 commit be6e86a

File tree

3 files changed

+14
-20
lines changed

3 files changed

+14
-20
lines changed

.github/workflows/eclint.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Test Whitespace and line endings
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
eclint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v1
11+
with:
12+
node-version: '12.x'
13+
- run: npm i -g eclint
14+
- run: eclint check

.travis.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,6 @@ jobs:
5757
script:
5858
- find . -name "*.md" | xargs -n 1 markdown-link-check
5959

60-
- stage: Test
61-
name: Editor Config check
62-
language: node_js
63-
node_js:
64-
- lts/*
65-
install:
66-
- npm i -g eclint
67-
script:
68-
- eclint check
69-
7060
- stage: Test
7161
name: Doc Toc Check
7262
language: node_js

travis.yml.template

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,6 @@ jobs:
5555
script:
5656
- find . -name "*.md" | xargs -n 1 markdown-link-check
5757

58-
- stage: Test
59-
name: Editor Config check
60-
language: node_js
61-
node_js:
62-
- lts/*
63-
install:
64-
- npm i -g eclint
65-
script:
66-
- eclint check
67-
6858
- stage: Test
6959
name: Doc Toc Check
7060
language: node_js

0 commit comments

Comments
 (0)