From 882470a4d3c34cee06dd3ba06256a52b5fa67c9c Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Tue, 19 Apr 2022 14:01:53 -0400 Subject: [PATCH] New workflow test --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 892206e6..e8785a83 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,12 +39,12 @@ jobs: - name: Checkout repo uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 - - name: Cache npm - id: npm-cache - uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6 + - name: Set up Node + uses: actions/setup-node@9ced9a43a244f3ac94f13bfd896db8c8f30da67a # v3.0.0 with: - path: "~/.npm" - key: ${{ runner.os }}-npm-lint-${{ hashFiles('**/package-lock.json') }} + cache: 'npm' + cache-dependency-path: '**/package-lock.json' + node-version: "16" - name: Install dependencies run: npm ci