Skip to content

Commit

Permalink
Try deduping the lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Sep 25, 2023
1 parent 6c4597e commit c2974f9
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 963 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,14 @@ jobs:
- name: Check folder contents
run: ls -l .

- name: Remove root lockfile
run: rm yarn.lock

- name: Install deps
working-directory: ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
# Some weird install diffs with cloning this repo and installing.
# Don't care about lockfile diffs, so let it change.
# Note the Bash-ism to unset the env var
run: CI= yarn install
# Just kill the lockfile and reinstall
run: rm yarn.lock && CI= yarn install

- uses: actions/download-artifact@v2
with:
Expand Down
Loading

0 comments on commit c2974f9

Please sign in to comment.