-
Notifications
You must be signed in to change notification settings - Fork 83
54 lines (49 loc) · 1.35 KB
/
ci.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
name: ci
on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
name: "Bundle & Check Apps"
steps:
- uses: actions/checkout@v3
- name: cache deno installation and deno.land dependencies
uses: actions/cache@v2
with:
key: ${{ runner.os }}-deno-${{ hashFiles('**/*') }}
restore-keys: ${{ runner.os }}-deno-
path: |
/home/runner/.deno
/home/runner/.cache/deno/deps/https/deno.land
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Bundle Apps
run: deno run -A --lock=deno.lock --frozen=false --reload scripts/start.ts
- name: Check
run: deno task check
- name: Check if there are changes on ${{ matrix.os }}
id: changes
shell: bash
run: |
git status --porcelain
if [[ $(git status --porcelain | wc -c) -eq 0 ]]; then
echo "uncommitted changes detected"
exit 1
fi
- name: Test
continue-on-error: true
run: deno test --lock=deno.lock --frozen=false -A .
- name: Benchmark
continue-on-error: true
run: deno bench --lock=deno.lock --frozen=false -A .