Skip to content

Commit c65ccef

Browse files
authored
Enable CircleCI (observablehq#91)
1 parent c1f4b28 commit c65ccef

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:10.14.0
6+
steps:
7+
- run:
8+
name: yarn
9+
command: curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4
10+
- checkout
11+
- run:
12+
name: install
13+
command: $HOME/.yarn/bin/yarn --frozen-lockfile
14+
- run:
15+
name: test
16+
command: $HOME/.yarn/bin/yarn test

0 commit comments

Comments
 (0)