From 57c0814ad2da2496ef6d6c6ddb93b3835f444cbe Mon Sep 17 00:00:00 2001 From: Thomas Allmer Date: Wed, 28 Oct 2020 15:59:41 +0100 Subject: [PATCH] chore: use npm ci in the CI --- .github/workflows/release.yml | 2 +- .github/workflows/verify.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34a70ef79..a7a9efe33 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: ${{ runner.os }}-npm- - name: Install Dependencies - run: npm install + run: npm ci - name: Create Release Pull Request or Publish to npm id: changesets diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 58371ff26..ccab6b8f7 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -30,7 +30,7 @@ jobs: ${{ runner.os }}-npm- - name: Install Dependencies - run: npm install + run: npm ci - name: Lint run: npm run lint @@ -65,7 +65,7 @@ jobs: ${{ runner.os }}-npm- - name: Install Dependencies - run: npm install + run: npm ci - uses: microsoft/playwright-github-action@v1 @@ -102,7 +102,7 @@ jobs: ${{ runner.os }}-npm- - name: Install Dependencies - run: npm install + run: npm ci - name: Test run: npm run test:node