Skip to content

Commit 872bced

Browse files
authored
Merge pull request #27 from cht8687/patch-2
(chore):upgrade circleci to v2
2 parents 9896935 + 73a596a commit 872bced

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)