We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 624d6ca commit 742011aCopy full SHA for 742011a
.github/workflows/autofix.yml
@@ -0,0 +1,26 @@
1
+name: autofix.ci
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+ workflow_dispatch:
8
+jobs:
9
+ format-metadata:
10
+ runs-on: ubuntu-24.04
11
+ defaults:
12
+ run:
13
+ working-directory: website/typst-docs-web
14
+ steps:
15
+ - name: Checkout the repository
16
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17
+ with:
18
+ submodules: recursive
19
+ - name: Setup tools
20
+ uses: jdx/mise-action@13abe502c30c1559a5c37dff303831bab82c9402 # v2.2.3
21
+ - name: Install dependencies
22
+ run: bun install --frozen-lockfile
23
+ - name: Apply Biome checks
24
+ run: bun biome check --write ../
25
+ - name: Autofix
26
+ uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 # v1.3.2
0 commit comments