Skip to content

Commit

Permalink
Fix : workflow - pnpm lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
SonYoungsung committed Feb 5, 2024
1 parent 1d179fa commit a101dc8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pull_request_rules:
- name: Automatic merge on approval
conditions:
- and:
- 'base==master'
- 'base==main'
- '#review-threads-unresolved=0'
- '#changes-requested-reviews-by=0'
- 'label!=do-not-merge'
Expand All @@ -19,7 +19,7 @@ pull_request_rules:
- name: remove outdated reviews for non trusted authors
conditions:
- and:
- base=master
- base=main
- author!=@ecopod
actions:
dismiss_reviews: {}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --no-frozen-lockfile

- name: Patch token list version
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
scope: '@eth-optimism'

- name: Install dependencies to prepare for release 🔧
run: pnpm install --frozen-lockfile
run: pnpm install --no-frozen-lockfile

- name: Build and publish package on NPM 📦
run: pnpm release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
node-version: 16.x

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --no-frozen-lockfile

- name: Run Test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
node-version: 16.x

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --no-frozen-lockfile

- name: Save PR number
run: echo ${{ github.event.number }} > pr.txt
Expand Down

0 comments on commit a101dc8

Please sign in to comment.