Skip to content

Commit

Permalink
fix(console): prevent dirty git workspace after yarn install (#3096)
Browse files Browse the repository at this point in the history
  • Loading branch information
jialeicui committed Dec 25, 2023
1 parent b7524b5 commit 1818226
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/file-filter.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
client:
- "**/*.py"
- "client/**"
- ".github/workflows/client.yaml"
- ".github/workflows/client.yml"

console:
- "console/**"
- ".github/workflows/console.yml"

docker:
- "docker/**"
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions .github/workflows/console.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ jobs:
if: steps.yarn-cache.outputs.cache-hit != 'true' # Over here!
run: make install-dependencies

- name: Check if git workspace dirty
run: git diff --exit-code --quiet

- name: Yarn lint
working-directory: ./console
run: make ci-lint
Expand Down
File renamed without changes.
9 changes: 1 addition & 8 deletions console/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10982,20 +10982,13 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==

ejs@3.1.7, ejs@^3.1.7:
ejs@3.1.7, ejs@^3.1.7, ejs@^3.1.9:
version "3.1.7"
resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.7.tgz#c544d9c7f715783dd92f0bddcf73a59e6962d006"
integrity sha512-BIar7R6abbUxDA3bfXrO4DSgwo8I+fB5/1zgujl3HLLjwd6+9iOnrT+t3grn2qbk9vOgBubXOFwX2m9axoFaGw==
dependencies:
jake "^10.8.5"

ejs@^3.1.9:
version "3.1.9"
resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361"
integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==
dependencies:
jake "^10.8.5"

electron-to-chromium@^1.4.431:
version "1.4.469"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.469.tgz#c9cea85ab94031e239ca4ab03158726672d6f960"
Expand Down

0 comments on commit 1818226

Please sign in to comment.