-
Notifications
You must be signed in to change notification settings - Fork 4
101 lines (83 loc) · 2.38 KB
/
tests.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: Tests
on:
push:
branches: [development]
pull_request:
jobs:
changes:
name: Check for changes
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
aform: ${{ steps.filter.outputs.aform }}
atable: ${{ steps.filter.outputs.atable }}
steps:
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
aform: aform/**
atable: atable/**
aform:
name: AForm
needs: changes
if: ${{ needs.changes.outputs.aform == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
strategy:
matrix:
node: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
cache-dependency-path: '**/config/rush/pnpm-lock.yaml'
registry-url: https://npm.pkg.github.com/
- name: Install Rush
run: node common/scripts/install-run-rush.js install
- name: Run Tests
working-directory: ./aform
run: node ../common/scripts/install-run-rushx.js test:coverage
- name: Coverage Report
if: always() # Also generate the report if tests are failing
uses: davelosert/vitest-coverage-report-action@v2
with:
working-directory: ./aform
file-coverage-mode: 'all'
vite-config-path: './vite.config.ts'
atable:
name: ATable
needs: changes
if: ${{ needs.changes.outputs.atable == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
strategy:
matrix:
node: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
cache-dependency-path: '**/config/rush/pnpm-lock.yaml'
registry-url: https://npm.pkg.github.com/
- name: Install Rush
run: node common/scripts/install-run-rush.js install
- name: Run Tests
working-directory: ./atable
run: node ../common/scripts/install-run-rushx.js test:coverage
- name: Coverage Report
if: always() # Also generate the report if tests are failing
uses: davelosert/vitest-coverage-report-action@v2
with:
working-directory: ./atable
file-coverage-mode: 'all'
vite-config-path: './vite.config.ts'