Skip to content

Commit

Permalink
Fix yarn install script
Browse files Browse the repository at this point in the history
  • Loading branch information
cgero-eth committed Mar 3, 2025
1 parent cd566c5 commit 3ec76a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_webapp_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
node-version: 18
cache: 'yarn'
- name: Install depdendencies
run: yarn install --pure-lockfile
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Build
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/webapp-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
node-version: 18
cache: 'yarn'
- name: Install depdendencies
run: yarn install --pure-lockfile
run: yarn install --immutable
- name: Test
run: yarn test
- name: Build
Expand Down Expand Up @@ -76,7 +76,6 @@ jobs:
env:
FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN_2 }}
FLEEK_PROJECT_ID: ${{ secrets.FLEEK_PROJECT_ID_2 }}


- name: Get the Fleek output url
run: echo "The Fleek deploy url is ${{ steps.deploy.outputs.deployUrl }}"
2 changes: 1 addition & 1 deletion .github/workflows/webapp-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: 18
cache: 'yarn'
- name: Install depdendencies
run: yarn install --pure-lockfile
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Test
Expand Down

0 comments on commit 3ec76a7

Please sign in to comment.