We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57af888 commit a8e6ffcCopy full SHA for a8e6ffc
2 files 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
examples/timeline.ts
@@ -1,4 +1,4 @@
1
-import { getTimelinePrediction, stationsNear } from 'neaps'
+import { getTimelinePrediction } from 'neaps'
2
3
const timeline = getTimelinePrediction({
4
lat: 26.77,
0 commit comments