-
Notifications
You must be signed in to change notification settings - Fork 8
46 lines (35 loc) · 1.01 KB
/
deno.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
name: Deno Server
on:
push:
repository_dispatch:
types: [main-updated]
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
name: Test Deno Servers ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Install pnpm Dependencies
run: pnpm install && pnpm upgrade "@builder.io/qwik" "@builder.io/qwik-city"
- name: Install Playwright
run: npx playwright install chromium --with-deps
- name: Build Deno Server
run: pnpm run build.deno
- name: Test Deno Server MPA
run: pnpm run test.deno.mpa
- name: Test Deno Server SPA
run: pnpm run test.deno.spa