Added redirect to chat #5254
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop, 'feature/**'] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.15.1 | |
cache: 'npm' | |
- name: Install dependency | |
run: npm install | |
- name : Run linter | |
run: npm run lint | |
tests: | |
strategy: | |
matrix: | |
shardIndex: [1, 2, 3, 4, 5, 6] | |
shardTotal: [6] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.15.1 | |
cache: 'npm' | |
- name: Install dependency | |
run: npm install | |
- name : Test | |
run: npx cross-env CI=true vitest --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --coverage | |
- run: mkdir -p coverage/lcov | |
- run: mkdir -p coverage/xml | |
- name: Move coverage report | |
run: mv ./tests/coverage/lcov.info coverage/lcov/${{matrix.shardIndex}}.info | |
- name: Move coverage report | |
run: mv ./test-report.xml coverage/xml/${{matrix.shardIndex}}.xml | |
- name: Upload artifact | |
if: ${{ !cancelled() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-artifacts | |
path: coverage/ | |
# - name: Upload blob report to GitHub Actions Artifacts | |
# if: ${{ !cancelled() }} | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: blob-report-${{ matrix.shardIndex }} | |
# path: .vitest-reports/* | |
# include-hidden-files: true | |
# retention-days: 1 | |
merge-reports-and-sonar-scan: | |
if: ${{ !cancelled() }} | |
needs: [tests, lint] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download coverage artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: coverage-artifacts | |
path: coverage | |
- name: Run script to merge all the xml files | |
run: | | |
echo '<testExecutions version="1">' > test-report.xml | |
grep -vh testExecutions coverage/xml/*.xml >> test-report.xml | |
echo '</testExecutions>' >> test-report.xml | |
- name: Run script to merge all the lcov files | |
run: | | |
mkdir ./tests/coverage | |
cat coverage/lcov/*.info > ./tests/coverage/lcov.info | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@master | |
if: success() || failure() | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |