Skip to content

Commit

Permalink
chore: corepack env in other-node-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Jun 6, 2024
1 parent 059864f commit e824605
Show file tree
Hide file tree
Showing 6 changed files with 281 additions and 229 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
"extends": ["plugin:@nx/typescript"],
"rules": {
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off"
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
Expand Down Expand Up @@ -77,7 +79,9 @@
"strict": "off",
"default-param-last": "warn",
"max-len": "off",
"arrow-body-style": "off"
"arrow-body-style": "off",
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/other-node-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
NX_CLOUD_DISTRIBUTED_EXECUTION: true
NX_VERBOSE_LOGGING: false
COREPACK_ENABLE_AUTO_PIN: "0"
COREPACK_ENABLE_STRICT: "0"

jobs:
set-node-versions:
Expand Down Expand Up @@ -65,8 +67,6 @@ jobs:
- name: Install pnpm v8
run: corepack install -g pnpm@8
shell: bash
env:
COREPACK_ENABLE_AUTO_PIN: "0"

- name: Print installed pnpm version
run: pnpm --version
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ website/build
website/.docusaurus
website/.cache-loader

.nx/cache
.nx/cache
.nx/workspace-data
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@

dist
tmp
/.nx/cache
/.nx/cache
/.nx/workspace-data
Loading

0 comments on commit e824605

Please sign in to comment.