forked from graffle-js/graffle
-
Notifications
You must be signed in to change notification settings - Fork 5
48 lines (36 loc) · 1.33 KB
/
dev.yml
File metadata and controls
48 lines (36 loc) · 1.33 KB
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
name: development
on:
push:
pull_request:
branches:
- "*"
jobs:
examples:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
deno:
[1.x, canary]
steps:
- uses: actions/checkout@v3
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno }}
- name: examples/authentication-via-http-header.ts
run: deno run --allow-net examples/authentication-via-http-header.ts
- name: examples/batching-requests.ts
run: deno run --allow-net examples/batching-requests.ts
- name: examples/custom-fetch.ts
run: deno run --allow-net examples/custom-fetch.ts
- name: examples/error-handling.ts
run: deno run --allow-net examples/error-handling.ts
- name: examples/passing-custom-header-per-request.ts
run: deno run --allow-net examples/passing-custom-header-per-request.ts
- name: examples/passing-more-options-to-fetch.ts
run: deno run --allow-net examples/passing-more-options-to-fetch.ts
- name: examples/receiving-a-raw-response.ts
run: deno run --allow-net examples/receiving-a-raw-response.ts
- name: examples/using-variables.ts
run: deno run --allow-net examples/using-variables.ts