diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..15c0131 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,11 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/node:10.13.0 + steps: + - checkout + - run: sudo apt-get install -y python-dev + - run: git clone https://github.com/facebook/watchman.git && cd watchman && git checkout v4.7.0 && ./autogen.sh && ./configure && make && sudo make install + - run: npm install + - run: npm test \ No newline at end of file diff --git a/circle.yml b/circle.yml deleted file mode 100644 index e6b16ed..0000000 --- a/circle.yml +++ /dev/null @@ -1,8 +0,0 @@ -machine: - node: - version: 6.9.5 - npm: - version: 3.10.10 -dependencies: - pre: - - git clone https://github.com/facebook/watchman.git && cd watchman && git checkout v4.7.0 && ./autogen.sh && ./configure && make && sudo make install