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

Commit cc52dcd

Browse files
author
Ahmad Nassri
committed
build(circle): switch to circle ci
1 parent d922484 commit cc52dcd

File tree

2 files changed

+39
-33
lines changed

2 files changed

+39
-33
lines changed

.travis.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

circle.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
version: 2.1
2+
3+
orbs:
4+
base: ahmadnassri/[email protected]
5+
node: ahmadnassri/[email protected]
6+
7+
workflows:
8+
version: 2
9+
default:
10+
jobs:
11+
- base/clone
12+
13+
- node/install:
14+
requires: [ base/clone ]
15+
16+
- node/lint:
17+
requires: [ base/clone ]
18+
19+
- node/test:
20+
name: test/10
21+
requires: [ base/clone ]
22+
tag: '10'
23+
24+
- node/test:
25+
name: test/8
26+
requires: [ base/clone ]
27+
tag: '8'
28+
29+
- node/test:
30+
name: test/7
31+
requires: [ base/clone ]
32+
tag: '7'
33+
34+
- node/release:
35+
context: semantic-release
36+
requires: [ node/lint, test/7, test/8, test/10 ]
37+
filters:
38+
branches:
39+
only: master

0 commit comments

Comments
 (0)