Compare commits

...

3 Commits

Author SHA1 Message Date
b06d4ff767 chore: update \index.ts\ file
Some checks failed
Run tests / test (push) Has been cancelled
Code quality / quality (push) Has been cancelled
2025-09-05 08:15:48 +02:00
a8faa1e43a chore: add bunfig.toml file 2025-09-05 08:15:18 +02:00
3e30f819f5 chore: update test workflow 2025-09-05 08:15:04 +02:00
3 changed files with 15 additions and 4 deletions

View File

@@ -1,13 +1,10 @@
name: Code quality
on:
push:
jobs:
quality:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5

10
bunfig.toml Normal file
View File

@@ -0,0 +1,10 @@
preload = []
[define]
[test]
preload = []
root = "./tests"
[install]

View File

@@ -1 +1,5 @@
console.log("Hello via Bun!");
async function main() {}
if (import.meta.main) {
await main();
}