Yield generated for 0458e583-eede-4187-bc40-c65e84d9ad1e
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
843 B

version: 2.1 # Use version 2.1 to enable orb usage.
orbs:
win: circleci/windows@2.2.0 # The Windows orb give you everything you need to start using the Windows executor.
jobs:
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: yarn global add node-gyp
- run: yarn install
- restore_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
- save_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- run: yarn lint
- run: yarn format:check
- run: yarn test:ci