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 27a55f8 commit 1418efcCopy full SHA for 1418efc
.github/workflows/autofix.yml
@@ -0,0 +1,35 @@
1
+name: autofix.ci
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
+permissions:
11
+ contents: read
12
13
+jobs:
14
+ autofix:
15
+ runs-on: ubuntu-latest
16
+ timeout-minutes: 10
17
18
+ steps:
19
+ - uses: actions/checkout@v4
20
21
+ - name: Use Node.js lts/*
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: lts/*
25
26
+ - name: Setup
27
+ run: npm i -g @antfu/ni
28
29
+ - name: Install
30
+ run: nci
31
32
+ - name: Lint
33
+ run: nr lint --fix
34
35
+ - uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a
.github/workflows/lint.yml
0 commit comments