-
Notifications
You must be signed in to change notification settings - Fork 34
72 lines (70 loc) · 1.82 KB
/
code-quality-pr-check.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
63
64
65
66
67
68
69
70
71
72
name: "code quality PR check"
on:
pull_request:
paths:
- "src/**"
- "package-lock.json"
- "tests/**"
- "dist/**"
- "tsconfig.json"
- .github/workflows/code-quality-pr-check.yml
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: "npm"
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: lint
run: npm run lint:ci
- name: format check
run: npm run format:ci
- name: build
run: npm run build
- name: package
run: npm run package
- name: validate dist
run: exit $(git status --porcelain | wc -l)
tests:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: "npm"
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: run tests
run: npm run test:ci
- uses: inception-health/otel-upload-test-artifact-action@v1
if: always()
with:
jobName: "tests (${{ matrix.os }})"
stepName: "run tests"
path: "junit.xml"
type: "junit"
githubToken: ${{ secrets.GITHUB_TOKEN }}
otel-export-trace:
needs: [tests, build]
if: always()
name: OpenTelemetry Export Trace
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: export trace
uses: ./
with:
otlpEndpoint: "TEST"
otlpHeaders: "TEST"
githubToken: ${{ secrets.GITHUB_TOKEN }}
env:
OTEL_CONSOLE_ONLY: "true"