Skip to content
This repository has been archived by the owner on Feb 13, 2025. It is now read-only.

Commit

Permalink
integrate new pipeline with matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
salieflewis committed Jan 20, 2024
1 parent 81bc2dd commit 431e897
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,22 @@ jobs:

coding-standards:
runs-on: ubuntu-latest
strategy:
matrix:
project: ['apps/delta', 'apps/site']
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
- name: Setup Biome
uses: biomejs/setup-biome@v2
with:
node-version: 16.x

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
run_install: true
# 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
run: pnpm biome ci .
# This runs the biome command in the project's directory.
working-directory: ${{ matrix.project }}
run: biome ci .
2 changes: 2 additions & 0 deletions apps/site/biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"./components/**",
"./constants/**",
"./design-system/**",
"./gql/**",
"./hooks/**",
"./styles/**",
"./utils/**"
Expand All @@ -29,6 +30,7 @@
"./components/**",
"./constants/**",
"./design-system/**",
"./gql/**",
"./hooks/**",
"./styles/**",
"./utils/**"
Expand Down

0 comments on commit 431e897

Please sign in to comment.