Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: biomejs/website
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 22168020a4d5fc96295849db76aa1160957ef69c
Choose a base ref
..
head repository: biomejs/website
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7a4dff7f8122e5664d2b58a0960e03e8ca4c503f
Choose a head ref
Showing 358 changed files with 6,957 additions and 1,537 deletions.
2 changes: 2 additions & 0 deletions .github/issue-labeler.yaml
Original file line number Diff line number Diff line change
@@ -9,3 +9,5 @@
- "https://biomejs.dev/ja/"
"Lang-Portuguese":
- "https://biomejs.dev/pt-br/"
"Lang-Ukrainian":
- "https://biomejs.dev/uk/"
2 changes: 1 addition & 1 deletion .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
@@ -13,6 +13,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Biome
uses: biomejs/setup-biome@1cbe33ead22c7a2fded3b52fa2893611c815c9b5 # v2.2.1
uses: biomejs/setup-biome@c016c38f26f2c4a6eb3662679143614a254263fd # v2.3.0
- name: Run Biome
run: biome ci
2 changes: 1 addition & 1 deletion .github/workflows/label-issue.yaml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Label documentation issues
uses: github/issue-labeler@50f02baa9587156323c3ca2c1ed396d220796ba6
uses: github/issue-labeler@411dd122ee7386163194b2a61132422e54ec0d99
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/issue-labeler.yaml
4 changes: 2 additions & 2 deletions .github/workflows/lunaria.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
# Necessary for Lunaria to work properly
# Makes the action clone the entire git history
@@ -41,4 +41,4 @@ jobs:
- run: pnpm install

- name: Generate Lunaria Overview
uses: yanthomasdev/lunaria-action@v0.1.0
uses: yanthomasdev/lunaria-action@06ad5ab2704d030708baf3b279ca0446b418e853 # v0.1.0
48 changes: 26 additions & 22 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,37 @@
name: Playwright Tests
on:
push:
branches: main
branches:
- main
pull_request:
branches: main
branches:
- main
env:
E2E: true
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Build
run: pnpm build
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Build
run: pnpm build
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps

- name: Start server
run: pnpm preview &
- name: Start server
run: pnpm preview &

- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
4 changes: 2 additions & 2 deletions .textlintrc.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"plugins": {
"@textlint/markdown": {
"extensions": [".mdx"]
"extensions": [".mdx", ".md"]
}
},
"rules": {
"preset-jtf-style": {
"1.1.3.箇条書き": false,
"1.2.1.句点(。)と読点(、)": false,
"1.2.2.ピリオド(.)とカンマ(,)": false,
"3.1.1.全角文字と半角文字の間": false,
"3.1.1.全角文字と半角文字の間": true,
"4.1.1.句点(。)": false,
"4.2.1.感嘆符(!)": false,
"4.2.2.疑問符(?)": false,
Loading