-
Notifications
You must be signed in to change notification settings - Fork 14
42 lines (38 loc) · 1002 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
name: Typescript PSV CI
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
psv-linux-build-test-codecov:
name: PSV / Linux Build / Tests / Code coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Build / Tests / Coverage
run: scripts/linux/psv/build_test_psv.sh
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
psv-commit-checker:
name: PSV.Commit.Checker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Commit checker script. Verify commit text
run: scripts/misc/commit_checker.sh
shell: bash