diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 217ca07..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: 2.1 - -orbs: - node: circleci/node@x.y - -jobs: - install-node-example: - docker: - - image: cimg/base:stable - steps: - - checkout - - node/install: - install-yarn: true - node-version: '16.17' - - run: node --version -workflows: - test_my_app: - jobs: - - install-node-example - - -