Skip to content

Commit

Permalink
Setup CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
LevelbossMike committed Aug 3, 2017
1 parent 9986f34 commit 08426fe
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
38 changes: 38 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/node:4.8.4

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4

working_directory: ~/repo

steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: yarn install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: yarn test


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ember-cli-deploy-fastboot-app-server-aws
# ember-cli-deploy-fastboot-app-server-aws [![CircleCI](https://circleci.com/gh/ember-cli-deploy/ember-cli-deploy-fastboot-app-server-aws.svg?style=svg)](https://circleci.com/gh/ember-cli-deploy/ember-cli-deploy-fastboot-app-server-aws)

> An ember-cli-deploy plugin to deploy Ember FastBoot apps that are deployed via [fastboot-app-server](https://github.com/ember-fastboot/fastboot-app-server) to [AWS](https://aws.amazon.com) (S3)
Expand Down
2 changes: 1 addition & 1 deletion tests/index-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

const fs = require('fs');
const AWS = require('aws-sdk');
const RSVP = require('RSVP');
const RSVP = require('rsvp');
const assert = require('./helpers/assert');
const client = new AWS.S3({
region: process.env.TEST_REGION
Expand Down

0 comments on commit 08426fe

Please sign in to comment.