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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,36 +10,36 @@ on:
workflow_dispatch:

jobs:
format:
biome:
runs-on: ubuntu-24.04
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Setup Node and Bun
- name: Setup toolchain
uses: jdx/mise-action@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Format
run: bun run format
- name: Check using Biome
run: bun run ci

lint:
tsc:
runs-on: ubuntu-24.04
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Setup Node and Bun
- name: Setup toolchain
uses: jdx/mise-action@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Check using tsc
run: bun run tsc

test:
runs-on: ubuntu-24.04
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Setup Node and Bun
- name: Setup toolchain
uses: jdx/mise-action@v2
- name: Install dependencies
run: bun install --frozen-lockfile
Expand All @@ -51,7 +51,7 @@ jobs:
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Setup Node and Bun
- name: Setup toolchain
uses: jdx/mise-action@v2
- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/
lib/
tsconfig.tsbuildinfo
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"lint:apply": "biome lint --apply .",
"check": "biome check .",
"check:write": "biome check --write .",
"ci": "biome ci .",
"test": "vitest",
"update-fixtures": "bun ./test/update-fixtures.ts && biome check --write ./test/fixtures"
},
Expand All @@ -39,7 +40,6 @@
"esbuild": "^0.20.2",
"textlint-scripts": "^14.0.4",
"textlint-tester": "^14.0.4",
"tsc": "^2.0.4",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
Expand Down