Skip to content

Commit

Permalink
stop using deprecated yarn api
Browse files Browse the repository at this point in the history
  • Loading branch information
jfschwarz committed Nov 13, 2023
1 parent 88dabc7 commit 3778d18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
node-version: 16
cache: "yarn"
cache-dependency-path: "**/yarn.lock"
- run: yarn install --frozen-lockfile
- run: yarn install --immutable
working-directory: ./extension
- name: Run static checks
run: yarn run check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
- name: Build extension
working-directory: ./extension
run: |
yarn install --frozen-lockfile
yarn install --immutable
yarn build
- run: yarn install --frozen-lockfile
- run: yarn install --immutable
working-directory: ./e2e-tests
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: "true"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install deps and build
working-directory: ./extension
run: |
yarn install --frozen-lockfile
yarn install --immutable
yarn build
- name: Update manifest.json with release tag
Expand Down

0 comments on commit 3778d18

Please sign in to comment.