Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre committed Nov 5, 2023
1 parent 06c6ada commit 9dbb204
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: CI
on:
pull_request:
branches:
- "*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- run: bun i
- run: bun ci
1 change: 1 addition & 0 deletions src/utils/intervalCheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const intervalCheck = <T>(ms: number, getValue: () => T) => {
}),
taskRunning: () => {
if (utilsResolved) throw new Error("Utils are already resolved");
console.log(performance.now());
scanHappenedOnce = true;
scanHappened = true;
},
Expand Down

0 comments on commit 9dbb204

Please sign in to comment.