From 5de7ecb5f08a58d8f2c7a466d6bccc3c5d68e280 Mon Sep 17 00:00:00 2001 From: LP B Date: Wed, 16 Feb 2022 18:20:15 +0100 Subject: [PATCH] chore(deps): freeze lockfile on Github Actions (#6570) --- .github/workflows/lint.yml | 2 +- .github/workflows/test-client.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 926c760aa..b6b7af587 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,7 +28,7 @@ jobs: # ESLint and Prettier must be in `package.json` - name: Install Node.js dependencies - run: yarn + run: yarn --frozen-lockfile - name: Run linters uses: wearerequired/lint-action@v1 diff --git a/.github/workflows/test-client.yaml b/.github/workflows/test-client.yaml index 256849b43..139574b1b 100644 --- a/.github/workflows/test-client.yaml +++ b/.github/workflows/test-client.yaml @@ -6,6 +6,6 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install modules - run: yarn + run: yarn --frozen-lockfile - name: Run tests run: yarn test:client