-
Notifications
You must be signed in to change notification settings - Fork 4
46 lines (35 loc) · 860 Bytes
/
coverage.yml
File metadata and controls
46 lines (35 loc) · 860 Bytes
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
---
name: coverage
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: coverage
strategy:
matrix:
node-version: [24.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
always-auth: false
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Start Docker
run: npm run docker:start
- name: Run Tests
run: npm run test:coverage
- name: Stop Docker
run: npm run docker:stop
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}