-
-
Notifications
You must be signed in to change notification settings - Fork 4
112 lines (91 loc) · 2.48 KB
/
build.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
name: Build Pipeline
on:
push:
branches:
- main
- dev
# tags:
# - v[0-9]+.[0-9]+.[0-9]+
pull_request:
types:
- opened
- synchronize
branches:
- "**"
# schedule:
# - cron: "18 21 * * 6"
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
inputs:
create_release:
description: Create a release
required: false
type: boolean
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
integration:
name: Integration
runs-on: ${{ matrix.os }}
permissions:
contents: read # Needed to clone the repository
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# - windows-latest
# - macOS-latest
deno-version:
- 1.45.2
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Deno ${{ matrix.deno-version }}
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- name: Check formatting, linting, license headers, types and run tests
run: deno task ok
- name: Generate coverage report
run: deno task test:coverage-gen
- name: Upload coverage
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
name: ${{ matrix.os }}
files: ./_etc/coverage.lcov
delivery:
name: Delivery
needs: integration
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
permissions:
contents: write # Needed to push the repository
id-token: write # Needed for auth with Deno Deploy
pages: write # Needed for updating GitHub Pages
env:
GITHUB_CLIENT_ID: ${{ secrets.GITHUB_CLIENT_ID }}
GITHUB_CLIENT_SECRET: ${{ secrets.GITHUB_CLIENT_SECRET }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
# ref: main
# token: ${{ secrets.GH_TOKEN }}
- name: Setup Deno (latest)
uses: denoland/setup-deno@v1
# - name: Build step
# run: deno task build
# - name: Upload to Deno Deploy
# uses: denoland/deployctl@v1
# with:
# project: c00l
# entrypoint: ./main.ts
- name: Publish
run: deno publish