Quality Scan in dependabot-npm_and_yarn-major-updates-653a924c0d #188
Workflow file for this run
This file contains hidden or 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: Quality Scan | |
run-name: Quality Scan in ${{ github.head_ref || github.ref_name || github.base_ref }} | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
schedule: | |
- cron: "0 6 * * 1" # 06 AM, every Monday | |
permissions: | |
contents: read | |
# Scanning only the last commit in the branch | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quality-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "latest" | |
- name: Run biome quality scan | |
run: | | |
npm install | |
npx @biomejs/biome check ./src/ |