From 89ae0e923e0f16513e912a776e6f24a41048b5f5 Mon Sep 17 00:00:00 2001 From: armfazh Date: Tue, 19 Oct 2021 16:54:46 -0700 Subject: [PATCH] Removes circelci script. --- .circleci/config.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 8bbb5910..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,26 +0,0 @@ -# CircleCI config -version: 2 -jobs: - build: - docker: - - image: circleci/node:14 - working_directory: ~/challenge-bypass-extension - steps: - - checkout - - run: - name: "Pull Submodules" - command: | - git submodule init - git submodule update --init - - run: - name: Fetching Sources - command: make install - - run: - name: Linting - command: make lint - - run: - name: Building - command: make clean sjcl build - - run: - name: Testing - command: make test-all