We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5489d2c commit 348d44eCopy full SHA for 348d44e
.github/workflows/ci.yml
@@ -21,3 +21,23 @@ jobs:
21
with:
22
license-check: true
23
lint: true
24
+ bun:
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - name: Install dependencies
28
+ # The erraneous typod version `5.0.0-aplha` takes priority over .3 as 'p' > 'l'
29
+ run: |
30
+ bun i --ignore-scripts
31
+ bun i -D --ignore-scripts fastify@5.0.0-alpha.3
32
+
33
+ - name: Run types check
34
+ run: bun run typescript
35
36
+ - name: Run Jest tests
37
+ run: bun run typescript:jest
38
39
+ - name: Run Vitest tests
40
+ run: bun run typescript:vitest
41
42
+ - name: Run unit tests
43
+ run: bun run unit:bun
0 commit comments