We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 409447f commit bda8194Copy full SHA for bda8194
1 file changed
.github/workflows/ci.yml
@@ -62,3 +62,27 @@ jobs:
62
63
- name: Type-check
64
run: pnpm type-check
65
+
66
+ benchmark:
67
+ name: Benchmarks
68
+ runs-on: ubuntu-latest
69
70
+ steps:
71
+ - name: Checkout
72
+ uses: actions/checkout@v4
73
74
+ - name: Install pnpm
75
+ uses: pnpm/action-setup@v4.0.0
76
77
+ - name: Set node version to 20
78
+ uses: actions/setup-node@v4
79
+ with:
80
+ node-version: 20
81
+ registry-url: https://registry.npmjs.org/
82
+ cache: pnpm
83
84
+ - name: Install deps
85
+ run: pnpm install
86
87
+ - name: Run benchmarks
88
+ run: pnpm benchmark
0 commit comments