Skip to content

Commit

Permalink
Merge pull request #21 from arcticicestudio/task/gh-20-ci-build-confi…
Browse files Browse the repository at this point in the history
…guration-updates

CI build configuration updates
  • Loading branch information
arcticicestudio committed Jan 6, 2018
2 parents a7a0468 + 67f5d70 commit 50a1c8e
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 1,683 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright (c) 2017-present Arctic Ice Studio <[email protected]>
# Copyright (c) 2017-present Sven Greb <[email protected]>

# Project: Nord Hyper
# Repository: https://github.com/arcticicestudio/nord-hyper
# License: MIT
# References:
# https://circleci.com/docs/2.0
# https://circleci.com/docs/2.0/circleci-images/#nodejs

version: 2
jobs:
build:
docker:
- image: circleci/node:8.7
steps:
- checkout
- run:
name: install-global-gulp-cli
command: sudo npm install -g gulp-cli
- run:
name: npm-install
command: npm install
- run:
name: lint
command: gulp --harmony lint
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package-lock=false
save-exact=true
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,18 @@
# https://docs.travis-ci.com/user/languages/javascript-with-nodejs

language: node_js
dist: trusty
sudo: false
node_js:
- "6"
- "4"
cache: yarn
- "8"
os:
- linux
- osx
before_install:
- rm -rf ./node_modules
before_script:
- yarn global add gulp
- yarn install
- npm install -g gulp-cli
- npm install gulp
- npm install
script: gulp --harmony lint
24 changes: 0 additions & 24 deletions circle.yml

This file was deleted.

Loading

0 comments on commit 50a1c8e

Please sign in to comment.