Skip to content

AYS-617 | Allow filtering by seat count with values starting with 0 (e.g., 0010 → 10) #596

AYS-617 | Allow filtering by seat count with values starting with 0 (e.g., 0010 → 10)

AYS-617 | Allow filtering by seat count with values starting with 0 (e.g., 0010 → 10) #596

# Purpose: This file is used to build the project when a pull request is opened, reopened, synchronized, ready for review, or unlocked.
# Name of the workflow
name: Pull Request Checker
# Trigger the workflow when various types of pull request events occur
on:
pull_request:
types:
- opened # triggers the workflow when a pull request is opened.
- reopened # triggers the workflow when a pull request is reopened after being closed.
- synchronize # triggers the workflow when a pull request is synchronized (changes are pushed to the branch associated with the pull request)
- ready_for_review # triggers the workflow when a pull request is marked as ready for review
- unlocked # triggers the workflow when a previously locked pull request is unlocked
jobs:
build: # Define the "build" job
runs-on: ubuntu-latest # Run the job on the latest version of Ubuntu
steps: # List of steps to execute within the job
- name: Update package cache # Step to update the package cache
run: sudo apt-get update
- name: Checkout code # Step to check out the code from the repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: actions/setup-node@v4 # Step to set up Node.js
with:
node-version: 18
- name: Install npm # Install with npm
run: npm install
- name: Build Project # Build with npm
run: npm run build
- uses: sonarsource/sonarqube-scan-action@v3 # Performs the project analysis using SonarQube Scanner.
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# If you wish to not fail your job when the Quality Gate is red, comment out the
# following lines.
- uses: sonarsource/sonarqube-quality-gate-action@master # Checks the SonarQube Quality Gate status.
timeout-minutes: 5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}