Skip to content

Commit c2634eb

Browse files
committedJan 21, 2022
Replace Travis CI with GitHub actions
Sorry Travis. Still ❤️ you.
1 parent a717171 commit c2634eb

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed
 

‎.github/workflows/main.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
lint:
7+
name: Run awesome-lint
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v2
12+
with:
13+
node-version: '16'
14+
- run: npm install awesome-lint
15+
- run: npm test

‎.travis.yml

-3
This file was deleted.

0 commit comments

Comments
 (0)