Feature/547/improve jest matchers #332
Workflow file for this run
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: Run CI | |
on: | |
# push: | |
# branches-ignore: | |
# - develop | |
# - release/** | |
# paths-ignore: | |
# - '**/*.md' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
sonar: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v3 | |
- name: Set up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install | |
run: npm ci | |
- name: Compile | |
run: npm run compile | |
- name: Init window e2e test subpackage | |
run: npm --prefix e2e/window-test ci | |
- name: Clean coverage report | |
run: npm run coverage:clean | |
- name: Generate coverage report | |
uses: GabrielBB/xvfb-action@v1 | |
env: | |
NODE_OPTIONS: "--max-old-space-size=8192" | |
with: | |
run: npm run coverage -- --coverageDirectory=coverage/unit | |
- name: Run Electron e2e test subpackage | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: npm --prefix e2e/electron-test cit | |
- name: Merge coverage reports | |
run: | | |
npm run coverage:merge | |
npm run coverage:merge-report | |
- name: Send results to SonarCloud | |
uses: SonarSource/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
test: | |
needs: | |
- sonar | |
strategy: | |
matrix: | |
os: [windows-latest, macos-latest] | |
node: [18] | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v3 | |
- name: Set up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{matrix.node}} | |
- name: Install | |
run: npm ci | |
- name: Compile | |
run: npm run compile | |
- name: Init window e2e test subpackage | |
run: npm --prefix e2e/window-test ci | |
- name: Generate coverage report | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: | | |
npx playwright install --with-deps | |
npm test | |
- name: Run Electron e2e test subpackage | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: npm --prefix e2e/electron-test cit |