Skip to content

Commit

Permalink
chore: Bump action version (#8073)
Browse files Browse the repository at this point in the history
<!--
Before opening a pull request, please read the [contributing
guidelines](https://github.com/pancakeswap/pancake-frontend/blob/develop/CONTRIBUTING.md)
first
-->

<!--
copilot:all
-->
### <samp>🤖 Generated by Copilot at 9a81782</samp>

### Summary
🛠️🚀📝

<!--
1. 🛠️ - This emoji can be used to indicate a bug fix or a minor
improvement to the action. It conveys the idea of repairing or fixing
something that was broken or not working well.
2. 🚀 - This emoji can be used to indicate a performance improvement or a
new feature added to the action. It conveys the idea of launching or
speeding up something that was slow or lacking.
3. 📝 - This emoji can be used to indicate a documentation update or a
code comment added to the action. It conveys the idea of writing or
explaining something that was unclear or missing.
-->
Updated a GitHub workflow action to check for typescript errors. The
file `.github/workflows/tsCheck.yml` was modified to use the latest
version of the action-check-typescript action.

> _`action-check-typescript`_
> _Updated to fix some bugs_
> _Autumn of errors_

### Walkthrough
* Update the action-check-typescript action to v1.1.3 for better
typescript error checking
([link](https://github.com/pancakeswap/pancake-frontend/pull/8073/files?diff=unified&w=0#diff-a347e684ced3a07c48e7e03c55692f1bd69af4c094a7fb599b9a1f8d41a37bb7L66-R66))
  • Loading branch information
chefjackson authored Oct 9, 2023
1 parent 1afb86d commit 24d68b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tsCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
echo 'Files removed: ${{steps.files.outputs.files_deleted}}'
- name: Check typescript errors
uses: chefjackson/[email protected].2
uses: chefjackson/[email protected].3
if: steps.files.outputs.changed == 'true'
env:
NODE_OPTIONS: '--max_old_space_size=4096'
Expand Down
8 changes: 1 addition & 7 deletions apps/web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@
"@pancakeswap/uikit/*": ["../../packages/uikit/src/*"]
}
},
"exclude": [
"**/node_modules",
"**/.*/",
// This is the path to the generated types from removed typechain
"**/config/abi/types/",
"**/abis/types/*.ts"
],
"exclude": ["**/node_modules", "**/.*/", "**/config/abi/types/", "**/abis/types/*.ts"],
"include": ["next-env.d.ts", "./src/**/*.ts", "./src/**/*.tsx"]
}

0 comments on commit 24d68b2

Please sign in to comment.