From eb97eaeb382d49be4c3c831ea0d70a77fdbf0e5e Mon Sep 17 00:00:00 2001 From: Boaz Poolman Date: Tue, 17 Oct 2023 20:45:29 +0200 Subject: [PATCH] feat: Add --no-lockfile to the yarn install step in the pipeline --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index af4a439..3225145 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: with: node-version: ${{ matrix.node }} - name: Install dependencies - run: yarn + run: yarn --no-lockfile - name: Run eslint run: yarn run eslint integration: @@ -38,7 +38,7 @@ jobs: with: node-version: ${{ matrix.node }} - name: Install dependencies plugin - run: yarn --unsafe-perm --production + run: yarn --no-lockfile --unsafe-perm --production - name: Install dependencies playground run: yarn playground:install --unsafe-perm - name: Build playground