-
Notifications
You must be signed in to change notification settings - Fork 0
139 lines (122 loc) · 4.41 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
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
name: CI
on:
push:
paths:
- "assets/**"
- "src/**"
- "tests/**"
- "dev/**"
- ".github/workflows/*"
- "deno.lock"
workflow_dispatch:
env:
denoVersion: "v2.0.0"
DENO_DIR: deno
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup
uses: dhardtke/prandium/.github/actions/setup@main
with:
denoVersion: ${{ env.denoVersion }}
cacheVersion: ${{ secrets.CACHE_VERSION }}
denoDir: ${{ env.DENO_DIR }}
- name: Format
run: deno task fmt:check
- name: Lint
run: deno task lint
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup
uses: dhardtke/prandium/.github/actions/setup@main
with:
denoVersion: ${{ env.denoVersion }}
cacheVersion: ${{ secrets.CACHE_VERSION }}
denoDir: ${{ env.DENO_DIR }}
- name: Run tests
run: deno task test:coverage -- `find src/ -name '*.ts' | xargs echo` tests/
- name: Generate lcov
run: deno task coverage
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
files: out/coverage.lcov
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
build:
needs: [ lint, test ]
runs-on: ubuntu-latest
steps:
- name: Setup
uses: dhardtke/prandium/.github/actions/setup@main
with:
denoVersion: ${{ env.denoVersion }}
cacheVersion: ${{ secrets.CACHE_VERSION }}
denoDir: ${{ env.DENO_DIR }}
- name: Setup build tools
run: |
sudo apt-get install -y brotli gzip nodejs
npm install -g esbuild lightningcss-cli sass
echo sass version
sass --version
echo esbuild version
esbuild --version
# echo lightningcss version
# lightningcss --version
echo gzip version
gzip --version
echo brotli version
brotli --version
- name: Update cache (WIP)
run: deno cache --allow-import --lock deno.lock ./deps.ts
- name: Build
run: deno task build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: prandium
path: out/
release:
needs: [ build ]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: true
persist-credentials: false
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: prandium
path: out/
- name: Remove non-minified files
run: |
cd out/
rm server.js
cd ../assets/
rm index.css* index.js
- name: Create release zip
run: |
cd out/
zip -r prandium-${{github.ref_name}}.zip * ../docs/* ../README.md ../LICENSE
- name: Build Changelog
id: github_release
uses: mikepenz/release-changelog-builder-action@v1
with:
configuration: .github/changelog-config.json
commitMode: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
artifacts: prandium-${{github.ref_name}}.zip
body: ${{steps.github_release.outputs.changelog}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}