Work with unsaved documents #182
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: Node.js CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Style check | |
run: npm run lint | |
- name: Compile | |
run: npm run compile | |
- name: Test compile | |
run: npm run test-compile | |
- name: Server unit tests | |
run: npm run coverage:unit | |
working-directory: server | |
- name: Client test of e2e tests | |
run: npm run test | |
working-directory: client | |
- name: Run e2e tests | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: npm test | |
- name: Report code coverage | |
run: npm run coverage:report | |
working-directory: server | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |