Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,27 @@ jobs:
- name: Build Packages
if: ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'withastro' }}
run: pnpm run build


biome-lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Setup Biome
uses: biomejs/setup-biome@v2
- name: Run Biome
run: biome ci --formatter-enabled=false --enforce-assist=false --reporter=default --reporter=github

lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 5
needs: build
needs:
- biome-lint
steps:
- name: Disable git crlf
run: git config --global core.autocrlf false
Expand Down
2 changes: 1 addition & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.15/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.2/schema.json",
"files": {
"includes": [
"**",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"test:e2e:hosts": "turbo run test:hosted",
"benchmark": "astro-benchmark",
"lint": "biome lint && knip && eslint . --report-unused-disable-directives-severity=warn --concurrency=auto",
"lint:ci": "biome ci --formatter-enabled=false --enforce-assist=false --reporter=github && eslint . --concurrency=auto --report-unused-disable-directives-severity=warn && knip",
"lint:ci": "knip && eslint . --concurrency=auto --report-unused-disable-directives-severity=warn",
"lint:fix": "biome lint --write --unsafe",
"publint": "pnpm -r --filter=astro --filter=create-astro --filter=\"@astrojs/*\" --no-bail exec publint",
"version": "changeset version && node ./scripts/deps/update-example-versions.js && pnpm install --no-frozen-lockfile && pnpm run format",
Expand All @@ -61,7 +61,7 @@
},
"devDependencies": {
"@astrojs/check": "^0.9.5",
"@biomejs/biome": "2.3.15",
"@biomejs/biome": "2.4.2",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@flue/cli": "^0.0.32",
Expand Down
1 change: 0 additions & 1 deletion packages/markdown/remark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./shiki/engine": "./dist/engine.js",
"./shiki": "./dist/shiki.js",
"./shiki-style-collector": "./dist/shiki-style-collector.js",
"./transformers/style-to-class": "./dist/transformers/style-to-class.js"
Expand Down
74 changes: 37 additions & 37 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading