Skip to content

Commit

Permalink
chore: update dependencies and fix CI (#21)
Browse files Browse the repository at this point in the history
* chore: update dependencies

* chore: fix linting

* chore: update travis file

* chore: remove yarn lock, just use package lock

* chore: add circle ci version 2
  • Loading branch information
jacobheun authored Mar 7, 2019
1 parent 27d9f42 commit accb16b
Show file tree
Hide file tree
Showing 10 changed files with 13,612 additions and 16,567 deletions.
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:10-browsers
environment:
NO_SANDBOX: true
steps:
- checkout
- run:
command: npm ci
- run:
command: npm run lint
- run:
command: npm run test
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ test/repo-tests*
logs
*.log

coverage

# Runtime data
pids
*.pid
Expand All @@ -18,6 +16,7 @@ lib-cov

# Coverage directory used by tools like istanbul
coverage
.nyc_output/

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
Expand Down
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
sudo: false
language: node_js
node_js:
- 6
- 8
- stable

# Make sure we have new NPM.
# Make sure we have new NPM and yarn
before_install:
- npm install -g npm

Expand Down
12 changes: 0 additions & 12 deletions circle.yml

This file was deleted.

Loading

0 comments on commit accb16b

Please sign in to comment.