Skip to content

Commit

Permalink
Merge pull request #72 from pelias/move-from-travisci-to-github-actions
Browse files Browse the repository at this point in the history
Move from TravisCI to GitHub Actions
  • Loading branch information
orangejulius authored Sep 23, 2021
2 parents 3dd10c5 + ec42f25 commit 886bf99
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 16 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Continuous Integration
on: push
jobs:
unit-tests:
runs-on: '${{ matrix.os }}'
strategy:
matrix:
os:
- ubuntu-20.04
node-version:
- 12.x
- 14.x
- 16.x
steps:
- uses: actions/checkout@v2
- name: 'Install node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v2-beta
with:
node-version: '${{ matrix.node-version }}'
- name: Run lint
run: |
npm install
npm run lint && npm ls
1 change: 0 additions & 1 deletion .lgtm

This file was deleted.

8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
[![Build Status](https://travis-ci.org/pelias/fuzzy-tests.png)](https://travis-ci.org/pelias/fuzzy-tests)

# Fuzzy tests

[![Greenkeeper badge](https://badges.greenkeeper.io/pelias/fuzzy-tests.svg)](https://greenkeeper.io/)
Expand Down
7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"validate": "npm ls"
},
"dependencies": {
"pelias-fuzzy-tester": "^1.18.1"
"pelias-fuzzy-tester": "^1.19.0"
},
"devDependencies": {
"jshint": "^2.9.4",
Expand All @@ -35,8 +35,5 @@
"pre-commit": [
"lint",
"validate"
],
"engines": {
"npm": "~2.0.0"
}
]
}

0 comments on commit 886bf99

Please sign in to comment.