Skip to content

Commit

Permalink
🚨 (sample): Prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
valpinkman committed Nov 14, 2024
1 parent 0244b51 commit 0ec3702
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge_queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
checks:
name: Run health check and unit tests
runs-on: ledgerhq-device-sdk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down
3 changes: 2 additions & 1 deletion apps/sample/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"**/*.ts",
"**/*.tsx",
"eslint.config.mjs",
"next-env.d.ts"
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}
4 changes: 3 additions & 1 deletion packages/tools/esbuild-tools/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ const buildTypes = async () => {
};

const build = async () =>
spinner(() => Promise.all([buildBrowser(), buildNode(), buildTypes()]));
process.env.CI
? Promise.all([buildBrowser(), buildNode(), buildTypes()])
: spinner(() => Promise.all([buildBrowser(), buildNode(), buildTypes()]));

build()
.then(() => {
Expand Down

0 comments on commit 0ec3702

Please sign in to comment.