From 28936a113fc1d489f6506812477c20535e46f6ec Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Wed, 13 Oct 2021 10:18:02 -0400 Subject: [PATCH] Fix workflow with linter suggestions (#517) --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 54c223fe75..f4431fbed7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,10 +1,12 @@ +--- name: Build on: push jobs: cloc: - runs-on: ubuntu-latest + name: CLOC + runs-on: ubuntu-20.04 steps: - name: Checkout repo @@ -19,12 +21,12 @@ jobs: run: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git build: - + name: Build jslib runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, macos-latest, ubuntu-latest] + os: [windows-2019, macos-10.15, ubuntu-20.04] steps: - name: Set up Node