From d8168419854e37408f75f41ac64b9b08b2d9bbd0 Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Tue, 19 Apr 2022 14:38:02 -0400 Subject: [PATCH] TESTING --- .github/workflows/build.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c580e653..3c043586 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,8 +38,6 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 - with: - submodules: recursive - name: Cache npm id: npm-cache @@ -48,6 +46,9 @@ jobs: path: "~/.npm" key: ${{ runner.os }}-npm-lint-${{ hashFiles('**/package-lock.json') }} + - name: Install dependencies + run: npm ci + - name: TEST STEP run: ls -alh @@ -57,9 +58,6 @@ jobs: - name: TEST STEP MODULES run: ls -alh .git/modules - - name: Install dependencies - run: npm ci - - name: Run linter run: npm run lint