Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit d584f21

Browse files
committed
chore: add autofix.ci
1 parent b38063e commit d584f21

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/autofix.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: autofix.ci
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [ "main" ]
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
autofix:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- run: corepack enable
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 20
19+
20+
- run: yarn install --immutable
21+
- run: yarn fmt
22+
23+
- uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a

0 commit comments

Comments
 (0)