-
Notifications
You must be signed in to change notification settings - Fork 12
94 lines (83 loc) · 2.21 KB
/
Copy pathci.yml
File metadata and controls
94 lines (83 loc) · 2.21 KB
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
name: CI
on:
pull_request:
paths:
- deno.json
- deno.lock
- '**/*.ts'
- fixtures
- .github/workflows/ci.yml
push:
branches: main
paths:
- deno.json
- deno.lock
- '**/*.ts'
- fixtures
- .github/workflows/ci.yml
workflow_dispatch:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- run: deno cache mod.ts
- run: deno task test
--coverage=cov_profile
--no-check # ⬆signal∶noise & ∵ we have `jobs.typecheck`
- run: deno coverage cov_profile --lcov --output=cov_profile.lcov
# errors on macOS
- run: |
brew tap coverallsapp/coveralls
brew trust --formula coverallsapp/coveralls/coveralls
if: matrix.os == 'macos-latest'
- uses: coverallsapp/github-action@v2
with:
path-to-lcov: cov_profile.lcov
parallel: true
flag-name: ${{ matrix.os }}
upload-coverage:
needs: tests
runs-on: ubuntu-latest
steps:
- uses: coverallsapp/github-action@v2
with:
parallel-finished: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- run: deno lint
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- run: deno task typecheck
no-system-xz:
runs-on: ubuntu-latest
container: debian:bookworm-slim
steps:
- run: |
apt-get update
apt-get install --yes ca-certificates curl git unzip
- uses: actions/checkout@v4
- run: |
if command -v xz; then
echo "unexpected system xz" >&2
exit 1
fi
curl -fsSL https://deno.land/install.sh | sh
echo "$HOME/.deno/bin" >> "$GITHUB_PATH"
- run: PKGX_TEST_NO_SYSTEM_XZ=1 deno test --no-check --unstable-fs --unstable-ffi --allow-all src/plumbing/install.no-system-xz.test.ts