diff --git a/.circleci/config.yml b/.circleci/config.yml index b134b7b..324a6af 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,14 +1,15 @@ -version: 2.1 +version: 2.1 # Use version 2.1 to enable orb usage. orbs: - win: circleci/windows@2.2.0 + win: circleci/windows@2.2.0 # The Windows orb give you everything you need to start using the Windows executor. jobs: - job-name: - docker: - - image: circleci/node:12 + build: # name of your job + executor: + name: win/default # executor type + size: "medium" # resource class, can be "medium", "large", "xlarge", "2xlarge", defaults to "medium" if not specified + steps: + # Commands are run in a Windows virtual machine environment - checkout - - run: - name: Install node-gyp - command: yarn global add node-gyp && yarn install + - run: yarn global add node-gyp && yarn install