Skip to content

Commit 73a596a

Browse files
committed
(chore):upgrade circleci to v2
1 parent 9896935 commit 73a596a

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

circle.yml

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

circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2.1
2+
3+
orbs:
4+
node: circleci/node@1.1.4
5+
6+
jobs:
7+
build:
8+
executor:
9+
name: node/default
10+
tag: lts
11+
steps:
12+
- checkout
13+
- node/install-yarn
14+
- node/with-cache:
15+
steps:
16+
- run: yarn install --frozen-lockfile
17+
- run: npm run lint
18+
- run: npm run test

0 commit comments

Comments
 (0)