Skip to content
This repository has been archived by the owner on Aug 5, 2020. It is now read-only.

Commit

Permalink
build(circle): switch to circle ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Nassri committed Mar 15, 2019
1 parent d922484 commit cc52dcd
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

39 changes: 39 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
version: 2.1

orbs:
base: ahmadnassri/[email protected]
node: ahmadnassri/[email protected]

workflows:
version: 2
default:
jobs:
- base/clone

- node/install:
requires: [ base/clone ]

- node/lint:
requires: [ base/clone ]

- node/test:
name: test/10
requires: [ base/clone ]
tag: '10'

- node/test:
name: test/8
requires: [ base/clone ]
tag: '8'

- node/test:
name: test/7
requires: [ base/clone ]
tag: '7'

- node/release:
context: semantic-release
requires: [ node/lint, test/7, test/8, test/10 ]
filters:
branches:
only: master

0 comments on commit cc52dcd

Please sign in to comment.