Skip to content

Commit

Permalink
Fix yarn install in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Wixzi committed Feb 5, 2023
1 parent b49dc83 commit 273b153
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ jobs:
java-version: '17'

- name: Install dependencies
run: yarn install --frozen-lockfile --cache-folder $(yarn cache dir)
run: yarn install --immutable

- name: Generate open-api
run: yarn codegen:socket
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
java-version: '17'

- name: Install dependencies
run: yarn install --frozen-lockfile --cache-folder $(yarn cache dir)
run: yarn install --immutable

- name: Generate open-api
run: yarn codegen:socket
Expand All @@ -394,7 +394,7 @@ jobs:
run: yarn codegen:graphql

- name: Install dependencies
run: yarn install --frozen-lockfile --cache-folder $(yarn cache dir)
run: yarn install --immutable

- name: Verify Cypress
run: yarn cypress install
Expand Down

0 comments on commit 273b153

Please sign in to comment.