Skip to content

Commit 863b19a

Browse files
author
floatwork_jan
committed
switch CI provider
1 parent aff2e83 commit 863b19a

File tree

2 files changed

+38
-25
lines changed

2 files changed

+38
-25
lines changed

.circleci/config.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
version: 2.1
2+
3+
commands:
4+
run-tests:
5+
steps:
6+
- checkout
7+
- restore_cache:
8+
key: dependency-cache-{{ checksum "package.json" }}
9+
- run:
10+
name: Installing Dependencies
11+
command: npm install
12+
- save_cache:
13+
key: dependency-cache-{{ checksum "package.json" }}
14+
paths:
15+
- ./node_modules
16+
- run:
17+
name: Lint Source
18+
command: npm run test
19+
20+
jobs:
21+
node-latest:
22+
docker:
23+
- image: circleci/node:latest
24+
steps:
25+
- run-tests
26+
27+
node-lts:
28+
docker:
29+
- image: circleci/node:lts
30+
steps:
31+
- run-tests
32+
33+
workflows:
34+
node-multi-build:
35+
jobs:
36+
- node-latest
37+
- node-lts
38+
version: 2

.travis.yml

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

0 commit comments

Comments
 (0)