-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (47 loc) · 1.46 KB
/
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
name: Check
on:
push:
jobs:
check:
if: ${{ !startsWith(github.event.head_commit.message, 'release:') }}
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
submodules: recursive
- name: Export commit timestamp
uses: ./.github/actions/source-date-epoch
- name: Emscripten
uses: ./.github/actions/emscripten
- name: Restore
uses: ./.github/actions/restore
- name: Audit
continue-on-error: true
run: pnpm audit
- name: Format
run: pnpm format:check
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
- name: Test
run: pnpm test:coverage
- name: Build
run: pnpm build
- name: End-to-End
uses: ./.github/actions/e2e
- name: Codecov test results
uses: codecov/test-results-action@9739113ad922ea0a9abb4b2c0f8bf6a4aa8ef820 # v1
with:
files: ./junit.xml,./junit.e2e.xml
token: ${{ secrets.CODECOV_TOKEN }}
- name: Codecov coverage
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5
with:
files: ./coverage/cobertura-coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
- name: Generate SBOM
uses: ./.github/actions/sbom
- name: Publish dry-run
run: npm publish --dry-run