Skip to content

Update dependency prettier to v3.3.3 #3922

Update dependency prettier to v3.3.3

Update dependency prettier to v3.3.3 #3922

Workflow file for this run

name: Build
on:
pull_request:
branches: [develop]
push:
branches: [develop]
workflow_dispatch:
jobs:
checks:
if: github.event_name != 'push'
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Test build
run: |
npm install
npm run lint
npm run build
build:
if: github.event_name != 'pull_request'
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: docker://sonarsource/sonar-scanner-cli:latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}