This repository has been archived by the owner on Feb 28, 2025. It is now read-only.
N21-2014 Setup new SHD client #23
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: Test code | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
permissions: | |
contents: read | |
env: | |
node: 20 | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.node }} | |
- name: npm ci | |
run: npm ci --prefer-offline --no-audit | |
- name: npm run test:unit:ci | |
run: npm run test:unit:ci | |
env: | |
NODE_OPTIONS: "--unhandled-rejections=warn" | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: SonarCloud upload coverage | |
uses: SonarSource/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: npm ci | |
run: npm ci --prefer-offline --no-audit | |
- name: npm run lint | |
run: npm run lint |