Browse Source

Update config.yml

circleci-project-setup
NicolasLepinette 6 years ago
committed by GitHub
parent
commit
40ebebfd8a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      circleci/config.yml

18
circleci/config.yml

@ -1,7 +1,15 @@
version: 2.1
version: 2.1 # Use version 2.1 to enable orb usage.
orbs:
node: circleci/node@3.0.0
workflows:
node-tests:
win: circleci/windows@2.2.0 # The Windows orb give you everything you need to start using the Windows executor.
jobs:
- node/test
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: Write-Host 'Hello, Windows'
Loading…
Cancel
Save