Skip to content

Migrate to ng 18 #571

Migrate to ng 18

Migrate to ng 18 #571

Workflow file for this run

name: QA
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarcloud:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 22
registry-url: https://registry.npmjs.org
- name: install
run: yarn install --frozen-lockfile
- name: test
run: yarn test
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
FORCE_EXIT: true