-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (47 loc) · 1.34 KB
/
coverage.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: Coverage
on: ['push', 'pull_request']
permissions:
contents: read
jobs:
build:
permissions:
checks: write # for coverallsapp/github-action to create new checks
contents: read # for actions/checkout to fetch code
runs-on: ubuntu-latest
name: Coverage
strategy:
fail-fast: false
matrix:
node-version: [18.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3.7.0
with:
always-auth: false
node-version: ${{ matrix.node-version }}
- name: Start Databases
run: npm run db:start:no-oracle
- name: Run npm install
run: npm install
- name: Install pg-native
run: npm i pg-native
- run: npm run build
- name: Run Tests
run: npm run test:coverage || true
env:
CI: true
DB: 'postgres pgnative mysql mysql2 mssql sqlite3 cockroachdb'
KNEX_TEST_TIMEOUT: 60000
- name: Stop Databases
run: npm run db:stop
- name: Generate LCOV
run: npm run coveralls
- name: Update Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}