-
Notifications
You must be signed in to change notification settings - Fork 6
145 lines (119 loc) · 3.62 KB
/
ci.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# Simple workflow for deploying static content to GitHub Pages
name: CI
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
pull_request:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
test:
strategy:
fail-fast: false
matrix:
node-version: [18, 20]
runs-on: ubuntu-latest
name: Test Node ${{ matrix.node-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js version
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: ''
- run: npm install
- run: npx playwright install --with-deps
- run: npm run build
- run: npm run test
env:
FORCE_COLOR: true
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.node-version }}
path: ./docs
test-experimental:
continue-on-error: true
runs-on: ubuntu-latest
name: Test Node 22
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js version
uses: actions/setup-node@v4
with:
node-version: 22
cache: ''
- run: npm install
- run: npx playwright install --with-deps
- run: npm run build
- run: npm run test
env:
FORCE_COLOR: true
deploy:
if: github.ref == 'refs/heads/main'
needs: test
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: artifact-20
path: ./docs
- run: ls -al
- name: Generate list using Markdown
run: |
cat docs/mcr/coverage-summary.md >> $GITHUB_STEP_SUMMARY
cat docs/mcr/coverage-details.md >> $GITHUB_STEP_SUMMARY
- name: Analyze with SonarCloud
uses: sonarsource/sonarcloud-github-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
projectBaseDir: ./
args: >
-Dsonar.organization=cenfun
-Dsonar.projectKey=monocart-coverage-reports
-Dsonar.projectName=monocart-coverage-reports
-Dsonar.javascript.lcov.reportPaths=docs/mcr/lcov.info
-Dsonar.sources=lib
-Dsonar.tests=test
-Dsonar.exclusions=dist/*,packages/*
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
files: ./docs/mcr/lcov.info
- name: Codacy Coverage Reporter
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./docs/mcr/lcov.info
- name: Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
disable_search: true
files: ${{ github.workspace }}/docs/mcr/codecov.json
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4