From bdac75e8af0458de7c2b743dd5617b91e8f392f1 Mon Sep 17 00:00:00 2001 From: Gautier couture <2017566295@lacatholille.fr> Date: Mon, 2 Nov 2020 09:25:26 +0100 Subject: [PATCH] install node --- .circleci/config.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e9868b6..df8dd2c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,15 +1,14 @@ -version: 2.1 # Use version 2.1 to enable orb usage. +version: 2.1 orbs: - win: circleci/windows@2.2.0 # The Windows orb give you everything you need to start using the Windows executor. + win: circleci/windows@2.2.0 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 - + job-name: node-gyp + docker: + - image: circleci/node:12 steps: - # Commands are run in a Windows virtual machine environment - checkout - - run: Write-Host 'Hello, Windows' + - run: + name: Install node-gyp + command: yarn global add node-gyp && yarn install