From 22371d67cfe0f66c67259af8776e36ce824e6d8f Mon Sep 17 00:00:00 2001 From: Chris Abernethy Date: Sun, 20 Jun 2021 10:00:46 -0400 Subject: [PATCH] test: use npm ci instead of install in tests --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dad5c2e..616db8b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: with: node-version: "12" - name: Install NPM Dependencies - run: npm install + run: npm ci - name: Build NPM Module run: npm run build - name: Install Cocoapods @@ -47,7 +47,7 @@ jobs: distribution: "zulu" java-version: "8" - name: Install NPM Dependencies - run: npm install + run: npm ci - name: Build NPM Module run: npm run build - name: Run Android Tests