Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit 42122ce

Browse files
authored
chore: upgrade to circleci 2.0 (#133)
* chore: upgrade to circleci 2.0 * fix: typo in config file name * refact: move test in same job
1 parent 22d6793 commit 42122ce

File tree

2 files changed

+26
-16
lines changed

2 files changed

+26
-16
lines changed

.circleci/config.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 2
2+
jobs:
3+
build:
4+
working_directory: ~/rollup-plugin-vue
5+
docker:
6+
- image: circleci/node:8.5.0
7+
steps:
8+
- checkout
9+
- run:
10+
name: Install yarn
11+
command: curl -o- -s -L https://yarnpkg.com/install.sh | bash
12+
- restore_cache:
13+
key: dependency-cache-{{ checksum "package.json" }}
14+
- run:
15+
name: Install package dependencies
16+
command: yarn --no-progress
17+
- run:
18+
name: Rebuild node-sass
19+
command: npm rebuild node-sass
20+
- save_cache:
21+
key: dependency-cache-{{ checksum "package.json" }}
22+
paths:
23+
- node_modules
24+
- run:
25+
name: Test
26+
command: npm test

circle.yml

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

0 commit comments

Comments
 (0)