We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c50d296 commit e359f5fCopy full SHA for e359f5f
.github/workflows/autofix.yml
@@ -0,0 +1,24 @@
1
+name: autofix.ci # needed to securely identify the workflow
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [ "main" ]
7
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ autofix:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - run: corepack enable
17
+ - uses: actions/setup-node@v3
18
+ with:
19
+ node-version: 18
20
+ cache: "pnpm"
21
+ - run: pnpm install
22
+ - name: Fix lint issues
23
+ run: pnpm run lint:fix
24
+ - uses: autofix-ci/action@8bc06253bec489732e5f9c52884c7cace15c0160
0 commit comments