From 62a7d4f2dc68379ea3625a2b12dd154b225bf6df Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Wed, 3 Aug 2022 18:30:19 -0500 Subject: [PATCH] Cleanup formatting of test workflow --- .github/workflows/test.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 906583f..74fbf15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,16 +10,17 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v3 - - name: Set Node.JS - uses: actions/setup-node@v3 - with: - node-version: 16.x + - name: Setup Node.JS + uses: actions/setup-node@v3 + with: + node-version: 16.x + cache: 'npm' - - name: Install dependencies - run: npm ci - - - name: Run tests - run: npm test + - name: Install dependencies + run: npm ci + + - name: Run tests + run: npm test