-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (43 loc) · 1.15 KB
/
test.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
name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
strategy:
matrix:
node-version: [20.x]
os: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Test build
run: pnpm run build
- name: Run tests
run: pnpm run test:docker
- name: "Report coverage"
uses: davelosert/vitest-coverage-report-action@v2
if: always()
with:
file-coverage-mode: all
json-summary-path: test-artifacts/coverage/coverage-summary.json
json-final-path: test-artifacts/coverage/coverage-final.json
file-coverage-root-path: /usr/src/react-ui/