tell biome to read from the version specified in the root directory #376
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: Integrate | |
on: | |
push: | |
branches: [ main, "releases/v*" ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
coding-standards: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
project: ['apps/site', 'apps/delta'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Biome | |
uses: biomejs/setup-biome@v2 | |
with: | |
# The version of the Biome CLI to install. | |
version: "^1.6.4" | |
working-dir: . # This sets the working directory to the root of your repository | |
- name: Run Biome | |
# This runs the biome command in the project's directory. | |
working-directory: ${{ matrix.project }} | |
run: biome ci . |