From ae2610387afe71067667ea9e26a50a6764b55077 Mon Sep 17 00:00:00 2001 From: JoelTrain Date: Tue, 23 Aug 2022 18:03:04 -0500 Subject: [PATCH] move repo clone down here so higher up can be cached maybe --- .github/workflows/build-for-windows.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-for-windows.yml b/.github/workflows/build-for-windows.yml index 1edf8a0c66..c9eacee578 100644 --- a/.github/workflows/build-for-windows.yml +++ b/.github/workflows/build-for-windows.yml @@ -23,7 +23,6 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 14 @@ -34,12 +33,15 @@ jobs: npm install --global yarn yarn --version + # install GNU make - name: Install gnu make using choclatey uses: crazy-max/ghaction-chocolatey@v2 with: args: install make + - uses: actions/checkout@v3 + # # Sets up the node_modules folder with the Windows version of the dependencies # - name: Yarn install # run: |