Skip to content

Commit

Permalink
Move to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Nov 28, 2020
1 parent 0359fe4 commit 52287de
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions readme.md
Expand Up @@ -8,8 +8,6 @@

> Linter for [Awesome](https://awesome.re) lists
[![Build Status](https://travis-ci.com/sindresorhus/awesome-lint.svg?branch=master)](https://travis-ci.com/sindresorhus/awesome-lint)

Intended to make it easier to create and maintain Awesome lists.

Includes a bunch of [general Markdown rules](https://github.com/sindresorhus/awesome-lint/blob/master/config.js) and some [Awesome specific rules](https://github.com/sindresorhus/awesome-lint/tree/master/rules).
Expand Down
22 changes: 22 additions & 0 deletions workflows/main.yml
@@ -0,0 +1,22 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 14
- 12
- 10
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

0 comments on commit 52287de

Please sign in to comment.