-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (50 loc) · 1.39 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
name: CI
on:
push:
workflow_call:
jobs:
deno:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build Reason
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
- name: Build Version
run: |
dotnet tool install --global minver-cli --version 5.0.0
version=$(minver --tag-prefix v)
echo "version=$version" >> $GITHUB_OUTPUT
echo "### Version: $version" >> $GITHUB_STEP_SUMMARY
sed -i -e "s/0.0.0/$version/" deno.json
cat deno.json
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Code Style
run: deno fmt --check
- name: Linting
run: deno lint
- name: Type Check
run: deno check scripts/*.ts *.ts src/*.ts
- name: Tests
run: |
deno test --coverage=cov/
deno coverage cov/
- name: Publish Release Package
if: startsWith(github.ref, 'refs/tags/v')
run: deno publish --allow-dirty
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: deno task build