Skip to content

Commit

Permalink
feat: Add --no-lockfile to the yarn install step in the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
boazpoolman committed Oct 17, 2023
1 parent efe6834 commit eb97eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit eb97eae

Please sign in to comment.