From 40ebebfd8aa2c906465f2f3b2e2649fe986f2e03 Mon Sep 17 00:00:00 2001 From: NicolasLepinette <55684429+NicolasLepinette@users.noreply.github.com> Date: Mon, 2 Nov 2020 10:32:43 +0100 Subject: [PATCH] Update config.yml --- circleci/config.yml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/circleci/config.yml b/circleci/config.yml index dbfd56f..e9868b6 100644 --- a/circleci/config.yml +++ b/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: - jobs: - - node/test + 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: Write-Host 'Hello, Windows'