Skip to content

Commit

Permalink
feat: add biome ci
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto committed Jan 3, 2024
1 parent 4942084 commit cd25350
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
- run: npm ci

- run: npm run build
- run: npm run lint

- run: npx playwright install --with-deps
- name: Build Storybook
Expand All @@ -48,6 +47,18 @@ jobs:

- uses: codecov/codecov-action@v3

quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Biome
uses: biomejs/setup-biome@v1

Check warning on line 56 in .github/workflows/node.js.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (biomejs)
with:
version: latest
- name: Run Biome
run: biome ci .

chromatic-deployment:
runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
### Generated by gibo (https://github.com/simonwhitaker/gibo)


### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Rust.gitignore

# Generated by Cargo
Expand All @@ -148,3 +149,5 @@ Cargo.lock

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb


3 changes: 2 additions & 1 deletion apps/web/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,15 @@ export default class MyDocument extends Document {
type="image/png"
sizes="32x32"
/>
<link rel="apple-touch-icon" href="/apple-icon.png"></link>
<link rel="apple-touch-icon" href="/apple-icon.png" />
<meta name="theme-color" content="#317EFB" />
{/* Global Site Tag (gtag.js) - Google Analytics */}
<script
async
src={`https://www.googletagmanager.com/gtag/js?id=${GA_TRACKING_ID}`}
/>
<script
// biome-ignore lint/security/noDangerouslySetInnerHtml: <explanation>
dangerouslySetInnerHTML={{
__html: `
window.dataLayer = window.dataLayer || [];
Expand Down

0 comments on commit cd25350

Please sign in to comment.