We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57af888 commit ed5fee7Copy full SHA for ed5fee7
1 file changed
.github/workflows/test.yml
@@ -72,3 +72,21 @@ jobs:
72
with:
73
name: benchmarks
74
path: benchmarks/*.csv
75
+
76
+ examples:
77
+ runs-on: ubuntu-latest
78
+ steps:
79
+ - uses: actions/checkout@v6
80
81
+ - uses: actions/setup-node@v6
82
+ with:
83
+ node-version: '22'
84
85
+ - name: Install modules
86
+ run: npm install
87
88
+ - name: Build
89
+ run: npm run build
90
91
+ - name: Run examples
92
+ run: for e in examples/*.ts; do node "$e"; done
0 commit comments