Skip to content

Commit 7d62409

Browse files
committed
bump babel
1 parent 65eaece commit 7d62409

File tree

4 files changed

+262
-244
lines changed

4 files changed

+262
-244
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: circleci/node:10
7+
steps:
8+
- checkout
9+
- run: npm ci
10+
- run:
11+
name: Unit Tests
12+
command: |
13+
mkdir junit
14+
npm test > junit/tests.xml
15+
when: always
16+
- store_test_results:
17+
path: junit
18+
19+

circle.yml

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

0 commit comments

Comments
 (0)