-
Notifications
You must be signed in to change notification settings - Fork 6
81 lines (66 loc) · 2.36 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Check code quality
on:
pull_request:
workflow_dispatch:
# cancel previous runs if new changes are pushed to the branch/PR
# see: https://stackoverflow.com/a/72408109
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check:
name: Check code quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# needed when building VitePress docs so timestamps can be calculated correctly
fetch-depth: 0
- uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install
- name: 🔎 Lint
run: pnpm run lint:ci:all
# we must continue on error here so the eslint results are uploaded to GitHub in the next step.
continue-on-error: true
- name: Upload eslint results to GitHub
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: eslint-results.sarif
wait-for-processing: true
- name: 🔎 Check formatting
run: pnpm run format:check:all
- name: 🛠️ Build packages
run: pnpm run build:all
env:
# skip fetching statistics for our docs here so we don't exceed GitHub rate limits which may fail in CI
VITEPRESS_SKIP_GITHUB_FETCH: true
- name: 🚨 Run unit tests
run: pnpm run test:all
# make sure that publint is only run after all packages have been built
- name: Run publint
run: pnpm run publint:all
- name: Upload code coverage artifact
uses: actions/upload-artifact@v4
if: always() # needed to also upload test results when they failed (useful for debugging)
with:
name: coverage
path: packages/sit-onyx/coverage
- name: Upload Storybook artifact
uses: actions/upload-artifact@v4
with:
name: storybook-static
path: packages/sit-onyx/storybook-static
- name: Upload documentation artifact
uses: actions/upload-artifact@v4
with:
name: documentation
path: apps/docs/src/.vitepress/dist
screenshots:
name: Component tests
uses: ./.github/workflows/playwright.yml