Skip to content

Commit c52b06a

Browse files
committed
ci: Switch to CircleCI
1 parent 2055065 commit c52b06a

File tree

3 files changed

+49
-38
lines changed

3 files changed

+49
-38
lines changed

.circle-ci/config.yml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Javascript Node CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4+
#
5+
version: 2
6+
jobs:
7+
build:
8+
docker:
9+
- image: circleci/node:10.13
10+
working_directory: ~/repo
11+
steps:
12+
- checkout
13+
14+
- restore_cache:
15+
keys:
16+
- v1-dependencies-{{ checksum "package.json" }}
17+
# fallback to using the latest cache if no exact match is found
18+
- v1-dependencies-
19+
20+
- run: yarn install --frozen-lockfile
21+
22+
- save_cache:
23+
paths:
24+
- node_modules
25+
key: v1-dependencies-{{ checksum "package.json" }}
26+
27+
- run:
28+
name: 'Lint'
29+
command: yarn lint:ci --format junit -o __reports__/junit/eslint-results.xml
30+
- run:
31+
name: 'Test'
32+
command: yarn test:ci --reporters default --reporters "jest-junit"
33+
environment:
34+
JEST_JUNIT_OUTPUT: '__reports__/junit/jest-results.xml'
35+
- run:
36+
name: 'Publish coverage'
37+
command: yarn codecov
38+
- deploy:
39+
name: 'Deploy'
40+
command: yarn release
41+
42+
- store_test_results:
43+
path: __reports__/junit
44+
- store_artifacts:
45+
path: __reports__/junit

.travis.yml

-34
This file was deleted.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
"start": "rollup --config --watch",
1818
"build": "rollup --config",
1919
"create:component": "foundry run plop component",
20-
"prerelease": "yarn build && yarn size",
21-
"release": "semantic-release",
2220
"lint": "foundry run eslint --fix --quiet \"src/**/*.js\"",
2321
"lint:ci": "foundry run eslint \"src/**/*.js\"",
2422
"test": "jest --watch",
25-
"test:ci": "jest --coverage --runInBand",
23+
"test:ci": "jest --coverage --runInBand --ci",
2624
"codecov": "codecov",
27-
"size": "size-limit"
25+
"size": "size-limit",
26+
"prerelease": "yarn build && yarn size",
27+
"release": "semantic-release"
2828
},
2929
"size-limit": [
3030
{

0 commit comments

Comments
 (0)