File tree Expand file tree Collapse file tree 3 files changed +7
-17
lines changed Expand file tree Collapse file tree 3 files changed +7
-17
lines changed Original file line number Diff line number Diff line change 9
9
- main
10
10
11
11
jobs :
12
- format :
12
+ ci :
13
13
runs-on : ubuntu-22.04
14
14
steps :
15
15
- name : Checkout your repository using git
18
18
uses : jdx/mise-action@v2
19
19
- name : Install dependencies
20
20
run : bun install --frozen-lockfile
21
- - name : Format
22
- run : bun run format:check
23
-
24
- lint :
25
- runs-on : ubuntu-22.04
26
- steps :
27
- - name : Checkout your repository using git
28
- uses : actions/checkout@v4
29
- - name : Setup Node and Bun
30
- uses : jdx/mise-action@v2
31
- - name : Install dependencies
32
- run : bun install --frozen-lockfile
33
- - name : Lint
34
- run : bun run lint
21
+ - name : Check using Biome
22
+ run : bun run ci
35
23
36
24
test :
37
25
runs-on : ubuntu-22.04
Original file line number Diff line number Diff line change 20
20
"lint" : " biome lint ." ,
21
21
"lint:fix" : " biome lint --apply ." ,
22
22
"check" : " biome check ." ,
23
+ "check:fix" : " biome check --apply ." ,
24
+ "ci" : " biome ci ." ,
23
25
"test" : " vitest"
24
26
},
25
27
"dependencies" : {},
Original file line number Diff line number Diff line change 1
- // parse all fixture and should has
2
- import { test } from "@textlint/ast-tester" ;
3
1
import fs from "node:fs" ;
4
2
import path from "node:path" ;
3
+ // parse all fixture and should has
4
+ import { test } from "@textlint/ast-tester" ;
5
5
import { describe , expect , it } from "vitest" ;
6
6
import { parse } from "../src/parse" ;
7
7
You can’t perform that action at this time.
0 commit comments