Skip to content

bump to 0.4.13

bump to 0.4.13 #344

Workflow file for this run

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:
# This allows the setup action to resolve the biome version to install
# from the package.json file in the project's directory. Falls back to
# the latest stable version if no version is specified.
working-dir: ${{ matrix.project }}
- name: Run Biome
# This runs the biome command in the project's directory.
working-directory: ${{ matrix.project }}
run: biome ci .