-
Notifications
You must be signed in to change notification settings - Fork 55
904 lines (712 loc) · 23.9 KB
/
tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
name: Tests
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "0 0 * * *" # daily
env:
UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
jobs:
test:
runs-on: ubuntu-latest
concurrency: test
name: Tests
steps:
- name: Setup repo
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
# - name: Verify formatting
# run: deno fmt --check
# - name: Lint
# run: deno lint
- name: Run tests
run: deno test -A --fail-fast --shuffle ./pkg
- name: Build
run: deno run -A ./cmd/build.ts
netlify-local:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Build
run: deno run -A ./cmd/build.ts
- name: Install example
run: |
pnpm add @upstash/redis@../../dist
npm i -g netlify-cli
working-directory: ./examples/netlify
- name: Start example
run: netlify dev --port 15015 & sleep 10
working-directory: ./examples/netlify
- name: Test
run: deno test --allow-net --allow-env ./examples/netlify/test.ts
env:
DEPLOYMENT_URL: http://localhost:15015
netlify-deployed:
concurrency: netlify-deployed
runs-on: ubuntu-latest
needs:
- release
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Install @upstash/redis
run: pnpm add @upstash/redis@${{needs.release.outputs.version}}
working-directory: ./examples/netlify
- name: Deploy
run: |
DEPLOYMENT_URL=$(npx netlify-cli deploy --dir=. --prod --json | jq -r '.deploy_url')
echo "DEPLOYMENT_URL=${DEPLOYMENT_URL}" >> $GITHUB_ENV
working-directory: ./examples/netlify
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: 4da5ba73-dedc-44b2-b27b-fa951c3da512
- name: Test
run: deno test --allow-net --allow-env ./examples/netlify/test.ts
netlify-edge-local:
if: false
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Install Dependencies
run: pnpm install
working-directory: ./examples/netlify
- name: Start
run: |
npx netlify-cli dev --port 15015 & sleep 10
working-directory: ./examples/netlify-edge
- name: Test
run: deno test --allow-net --allow-env ./examples/netlify-edge/test.ts
env:
DEPLOYMENT_URL: http://localhost:15015
netlify-edge-deployed:
if: false
concurrency: netlify-edge-deployed
runs-on: ubuntu-latest
needs:
- release
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Install Dependencies
run: pnpm install
working-directory: ./examples/netlify
- name: Deploy
run: |
DEPLOYMENT_URL=$(npx netlify-cli deploy --dir=. --prod --json | jq -r '.deploy_url')
echo "DEPLOYMENT_URL=${DEPLOYMENT_URL}" >> $GITHUB_ENV
working-directory: ./examples/netlify-edge
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: c3fbfe63-06ee-4aca-8e38-14ba73cb035e
- name: Test
run: deno test --allow-net --allow-env ./examples/netlify-edge/test.ts
nextjs-local:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Build
run: deno run -A ./cmd/build.ts
- name: Install example
run: pnpm add @upstash/redis@../../dist
working-directory: ./examples/nextjs
- name: Build example
run: pnpm build
working-directory: ./examples/nextjs
- name: Start example
run: pnpm start &
working-directory: ./examples/nextjs
env:
NEXT_PUBLIC_UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
NEXT_PUBLIC_UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
- name: Test
run: deno test --allow-net --allow-env ./examples/nextjs/test.ts
env:
DEPLOYMENT_URL: http://localhost:3000
nextjs-export-local:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Build
run: deno run -A ./cmd/build.ts
- name: Install example
run: pnpm add @upstash/redis@../../dist
working-directory: ./examples/nextjs_export
- name: Build example
run: pnpm build
working-directory: ./examples/nextjs_export
- name: Start example
run: pnpm start &
working-directory: ./examples/nextjs_export
env:
NEXT_PUBLIC_UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
NEXT_PUBLIC_UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
- name: Test
run: deno test --allow-net --allow-env ./examples/nextjs_export/test.ts
env:
DEPLOYMENT_URL: http://localhost:3000
nextjs-edge-local:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Build
run: deno run -A ./cmd/build.ts
- name: Install example
run: pnpm add @upstash/redis@../../dist
working-directory: ./examples/nextjs_edge
- name: Build example
run: pnpm build
working-directory: ./examples/nextjs_edge
- name: Start example
run: pnpm start & sleep 5
working-directory: ./examples/nextjs_edge
env:
NEXT_PUBLIC_UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
NEXT_PUBLIC_UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
- name: Test
run: deno test --allow-net --allow-env ./examples/nextjs_edge/test.ts
env:
DEPLOYMENT_URL: http://localhost:3000
nextjs-deployed:
concurrency: nextjs-deployed
runs-on: ubuntu-latest
needs:
- release
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Deploy
run: |
pnpm --dir=examples/nextjs add @upstash/redis@${{needs.release.outputs.version}}
DEPLOYMENT_URL=$(npx vercel --token=${{ secrets.VERCEL_TOKEN }})
echo "DEPLOYMENT_URL=${DEPLOYMENT_URL}" >> $GITHUB_ENV
env:
VERCEL_ORG_ID: ${{secrets.VERCEL_TEAM_ID}}
VERCEL_PROJECT_ID: "prj_pFFK1XgNIlnW014iiuqAIQmBBuZA"
- name: Test
run: deno test --allow-net --allow-env ./test.ts
working-directory: examples/nextjs
nextjs-export-deployed:
concurrency: nextjs-export-deployed
runs-on: ubuntu-latest
needs:
- release
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Deploy
run: |
pnpm --dir=examples/nextjs add @upstash/redis@${{needs.release.outputs.version}}
DEPLOYMENT_URL=$(npx vercel --token=${{ secrets.VERCEL_TOKEN }})
echo "DEPLOYMENT_URL=${DEPLOYMENT_URL}" >> $GITHUB_ENV
env:
VERCEL_ORG_ID: ${{secrets.VERCEL_TEAM_ID}}
VERCEL_PROJECT_ID: "prj_O4xbovmJKQ2xLtjhwrtxA3sKpPAY"
- name: Test
run: deno test --allow-net --allow-env ./examples/nextjs/test.ts
nextjs-edge-deployed:
concurrency: nextjs-edge-deployed
runs-on: ubuntu-latest
needs:
- release
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Deploy
run: |
pnpm --dir=examples/nextjs_edge add @upstash/redis@${{needs.release.outputs.version}}
DEPLOYMENT_URL=$(npx vercel --token=${{ secrets.VERCEL_TOKEN }})
echo "DEPLOYMENT_URL=${DEPLOYMENT_URL}" >> $GITHUB_ENV
env:
VERCEL_ORG_ID: ${{secrets.VERCEL_TEAM_ID}}
VERCEL_PROJECT_ID: "prj_bc5kMFz6ifbAaA7U3N86YSYqUUUI"
- name: Test
run: deno test --allow-net --allow-env ./examples/nextjs_edge/test.ts
cloudflare-workers-local:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Build
run: deno run -A ./cmd/build.ts
- name: Install example
run: |
pnpm add @upstash/redis@../../dist
pnpm add -g wrangler
working-directory: examples/cloudflare-workers
- name: Add environment
run: |
echo 'account_id = "${{ secrets.CLOUDFLARE_ACCOUNT_ID }}"' >> wrangler.toml
echo '[vars]' >> wrangler.toml
echo 'UPSTASH_REDIS_REST_URL = "${{ secrets.UPSTASH_REDIS_REST_URL }}"' >> ./wrangler.toml
echo 'UPSTASH_REDIS_REST_TOKEN = "${{ secrets.UPSTASH_REDIS_REST_TOKEN }}"' >> ./wrangler.toml
working-directory: examples/cloudflare-workers
- name: Start example
run: wrangler dev & sleep 5
working-directory: examples/cloudflare-workers
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
- name: Test
run: deno test -A ./test.ts
working-directory: examples/cloudflare-workers
env:
DEPLOYMENT_URL: http://localhost:8787
cloudflare-workers-deployed:
concurrency: cloudflare-workers-deployed
needs:
- release
env:
UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Install example
run: |
pnpm add @upstash/redis@${{needs.release.outputs.version}}
pnpm add -g wrangler
working-directory: examples/cloudflare-workers
- name: Add account ID
run: echo 'account_id = "${{ secrets.CLOUDFLARE_ACCOUNT_ID }}"' >> wrangler.toml
working-directory: examples/cloudflare-workers
- name: Deploy
run: wrangler publish
working-directory: examples/cloudflare-workers
env:
CLOUDFLARE_API_TOKEN: ${{secrets.CF_API_TOKEN}}
- name: Test
run: deno test -A ./test.ts
working-directory: examples/cloudflare-workers
env:
DEPLOYMENT_URL: https://upstash-redis.upstash.workers.dev
cloudflare-workers-with-typescript-local:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Build
run: deno run -A ./cmd/build.ts
- name: Install example
run: |
pnpm add @upstash/redis@../../dist
pnpm add -g wrangler
working-directory: examples/cloudflare-workers-with-typescript
- name: Add environment
run: |
echo 'account_id = "${{ secrets.CLOUDFLARE_ACCOUNT_ID }}"' >> wrangler.toml
echo '[vars]' >> wrangler.toml
echo 'UPSTASH_REDIS_REST_URL = "${{ secrets.UPSTASH_REDIS_REST_URL }}"' >> ./wrangler.toml
echo 'UPSTASH_REDIS_REST_TOKEN = "${{ secrets.UPSTASH_REDIS_REST_TOKEN }}"' >> ./wrangler.toml
working-directory: examples/cloudflare-workers-with-typescript
- name: Start example
run: wrangler dev & sleep 5
working-directory: examples/cloudflare-workers-with-typescript
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
- name: Test
run: deno test -A ./test.ts
working-directory: examples/cloudflare-workers-with-typescript
env:
DEPLOYMENT_URL: http://localhost:8787
cloudflare-workers-with-typescript-deployed:
concurrency: cloudflare-workers-with-typescript-deployed
needs:
- release
env:
UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Install example
run: |
pnpm add @upstash/redis@${{needs.release.outputs.version}}
pnpm add -g wrangler
working-directory: examples/cloudflare-workers-with-typescript
- name: Add account ID
run: echo 'account_id = "${{ secrets.CLOUDFLARE_ACCOUNT_ID }}"' >> wrangler.toml
working-directory: examples/cloudflare-workers-with-typescript
- name: Deploy
run: wrangler publish
working-directory: examples/cloudflare-workers-with-typescript
env:
CLOUDFLARE_API_TOKEN: ${{secrets.CF_API_TOKEN}}
- name: Test
run: deno test -A ./test.ts
working-directory: examples/cloudflare-workers-with-typescript
env:
DEPLOYMENT_URL: https://cloudflare-workers-with-typescript.upstash.workers.dev
fastly-local:
if: false
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Build
run: deno run -A ./cmd/build.ts
- name: Install example
working-directory: ./examples/fastly
run: |
pnpm add @upstash/redis@../../dist
curl -L https://github.com/fastly/cli/releases/download/v1.7.0/fastly_v1.7.0_linux-amd64.tar.gz > fastly.tar.gz
tar -xf ./fastly.tar.gz
- name: Inject variables
working-directory: ./examples/fastly
run: |
sed -i 's;<UPSTASH_REDIS_REST_URL>;${{ secrets.UPSTASH_REDIS_REST_URL }};' fastly.toml
sed -i 's;<UPSTASH_REDIS_REST_URL>;${{ secrets.UPSTASH_REDIS_REST_URL }};' src/index.js
sed -i 's;<UPSTASH_REDIS_REST_TOKEN>;${{ secrets.UPSTASH_REDIS_REST_TOKEN }};' src/index.js
- name: Start example
working-directory: ./examples/fastly
run: ./fastly compute serve & sleep 10
- name: Test
run: deno test -A ./examples/fastly/test.ts
env:
DEPLOYMENT_URL: http://localhost:7676
fastly-deployed:
if: false
concurrency: fastly-deployed
needs:
- release
env:
UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Install example
working-directory: ./examples/fastly
run: |
npm install --global npm@latest
pnpm add @upstash/redis@${{needs.release.outputs.version}}
curl -L https://github.com/fastly/cli/releases/download/v1.7.0/fastly_v1.7.0_linux-amd64.tar.gz > fastly.tar.gz
tar -xf ./fastly.tar.gz
- name: Inject variables
working-directory: ./examples/fastly
run: |
sed -i 's;<UPSTASH_REDIS_REST_URL>;${{ secrets.UPSTASH_REDIS_REST_URL }};' fastly.toml
sed -i 's;<UPSTASH_REDIS_REST_URL>;${{ secrets.UPSTASH_REDIS_REST_URL }};' src/index.js
sed -i 's;<UPSTASH_REDIS_REST_TOKEN>;${{ secrets.UPSTASH_REDIS_REST_TOKEN }};' src/index.js
- name: Deploy
working-directory: ./examples/fastly
run: ./fastly compute publish --service-id=${{ secrets.FASTLY_SERVICE_ID }}
env:
FASTLY_API_TOKEN: ${{secrets.FASTLY_API_TOKEN}}
- run: while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' https://terminally-flowing-lizard.edgecompute.app)" != "200" ]]; do sleep 1; done
timeout-minutes: 2
- name: Test
run: deno test -A ./examples/fastly/test.ts
env:
DEPLOYMENT_URL: https://terminally-flowing-lizard.edgecompute.app
nodejs-local:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Build
run: deno run -A ./cmd/build.ts
- name: Install example
run: pnpm add @upstash/redis@../../dist
working-directory: examples/nodejs
- name: Run example
run: node ./index.js
working-directory: examples/nodejs
nodejs-18-local:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Build
run: deno run -A ./cmd/build.ts
- name: Install example
run: pnpm add @upstash/redis@../../dist
working-directory: examples/nodejs-18
- name: Run example
run: node ./index.js
working-directory: examples/nodejs-18
deno-local:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Run example
run: deno run -A ./main.ts & sleep 5
working-directory: examples/deno
- name: Test
run: deno test -A ./main.test.ts
working-directory: examples/deno
env:
DEPLOYMENT_URL: http://localhost:8000
deno-deployed:
concurrency: deno-deployed
needs:
- release
env:
UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Deploy
run: deno run -A https://deno.land/x/deploy/deployctl.ts deploy --project=upstash-redis ./main.ts
working-directory: examples/deno
env:
DENO_DEPLOY_TOKEN: ${{ secrets.DENO_DEPLOY_TOKEN }}
- name: Test
run: deno test -A ./main.test.ts
working-directory: examples/deno
env:
DEPLOYMENT_URL: https://upstash-redis-70jbfgxwz310.deno.dev
release:
concurrency: release
outputs:
version: ${{ steps.version.outputs.version }}
needs:
- nodejs-local
- nodejs-18-local
# - fastly-local - not working in ci for some reason, local is fine
- nextjs-local
- nextjs-export-local
- nextjs-edge-local
- netlify-local
- deno-local
# - netlify-edge-local - their own cli doesn't work right now. I'll try again in a week
- cloudflare-workers-with-typescript-local
- cloudflare-workers-local
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Get version
id: version
run: echo "::set-output name=version::v0.0.0-ci.${GITHUB_SHA::8}-$(date '+%Y%m%d')"
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Build
run: deno run -A ./cmd/build.ts ${{ steps.version.outputs.version }}
- name: Publish ci version
working-directory: ./dist
run: |
echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > .npmrc
npm publish --access public --tag=ci