-
-
Notifications
You must be signed in to change notification settings - Fork 58
45 lines (37 loc) · 966 Bytes
/
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
name: CI
on: [push, pull_request]
jobs:
test:
name: Node.js v${{ matrix.nodejs }}
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [14, 16, 18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.nodejs }}
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.30
- name: Install
run: bun install
- name: (coverage) Install
if: matrix.nodejs >= 20
run: bun add -g c8
- name: Build
run: bun run build
- name: Test
if: matrix.nodejs < 20
run: npm test
- name: (coverage) Test
if: matrix.nodejs >= 20
run: c8 --include=packages npm test
- name: (coverage) Report
if: matrix.nodejs >= 20
run: |
c8 report --reporter=text-lcov > coverage.lcov
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}