Skip to content

Commit

Permalink
Deps ci install
Browse files Browse the repository at this point in the history
  • Loading branch information
dyakovri committed Jul 22, 2024
1 parent f5d856b commit ab6991d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/main_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
cache: 'pnpm'

- name: Install
run: pnpm install
run: |
pnpm config set auto-install-peers true
pnpm install
- name: Check
run: pnpm lint && pnpm stylelint
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/pr_create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
cache: 'pnpm'

- name: Install
run: pnpm install
run: |
pnpm config set auto-install-peers true
pnpm install
- name: Check
run: pnpm lint && pnpm stylelint
Expand All @@ -46,7 +48,9 @@ jobs:
cache: 'pnpm'

- name: Install
run: pnpm install
run: |
pnpm config set auto-install-peers true
pnpm install
- name: Check
run: pnpm test
1 change: 1 addition & 0 deletions src/pages/PageMain.vue
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ watch(gasCondition, val => {
height: 100%;
padding: 24px 24px 112px;
}
.container {
position: relative;
height: 100vh;
Expand Down

0 comments on commit ab6991d

Please sign in to comment.