Skip to content
Snippets Groups Projects
Unverified Commit a7d10a74 authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

GitHub Actions: correct the way yarn is supposed to pull the deps (#16933)

There's no `--lockfile` option, the valid one is `--frozen-lockfile`.

https://classic.yarnpkg.com/en/docs/cli/install/#toc-yarn-install-frozen-lockfile
parent e96cf05b
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ jobs:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/project.clj') }}-${{ hashFiles('**/deps.edn') }}
- run: yarn install --lockfile
- run: yarn install --frozen-lockfile --prefer-offline
- run: lein with-profile +include-all-drivers,+cloverage,+junit,+${{ matrix.edition }} deps
- run: ./bin/build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment