-
Notifications
You must be signed in to change notification settings - Fork 9
93 lines (69 loc) · 1.79 KB
/
CI.yml
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
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will install Deno then run Deno lint and test.
# For more information see: https://github.com/denoland/setup-deno
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
profile-deno:
runs-on: ubuntu-latest
steps:
- name: setup repo
uses: actions/checkout@v3
- name: setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Run profile
run: deno task profile
unit-test-deno:
runs-on: ubuntu-latest
steps:
- name: setup repo
uses: actions/checkout@v3
- name: setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
# - name: Verify formatting
# run: deno fmt --check
- name: run linter
run: deno lint
- name: run tests
run: deno task test
test-run-bun:
runs-on: ubuntu-latest
steps:
- name: setup repo
uses: actions/checkout@v3
- name: setup Bun.sh
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: bun intall
run: bun install
- name: bun run
run: npm run test:bun
after_script:
- pkill bun
test-run-wrangler:
runs-on: ubuntu-latest
steps:
- name: setup repo
uses: actions/checkout@v3
- name: npm intall
run: npm install
- name: setup Wrangler
run: npm install -g wrangler
- name: wrangler dev
run: npm run test:cfw
after_script:
- pkill node