返回提交历史
Added
.github/dependabot.yml
+6
-0
Modified
.github/workflows/prettier.yml
+5
-3
XFEstudio/XFESpaceNinjaServer
Create dependabot.yml (#18)
Co-authored-by: AngeloTadeucci <AngeloTadeucci@users.noreply.github.com>
b25fb52d
代码差异
2 个文件
+11
-3
@@ -0,0 +1,6 @@
1
version: 2
2
updates:
3
- package-ecosystem: "npm"
4
directory: "/"
5
schedule:
6
interval: "weekly"
@@ -6,16 +6,18 @@ jobs:
6
6
format:
7
7
runs-on: ubuntu-latest
8
8
steps:
9
- uses: actions/checkout@v2
9
- name: Checkout
10
uses: actions/checkout@v3.5.2
10
11
with:
11
12
ref: ${{ github.head_ref }}
12
- uses: actions/setup-node@v1
13
- name: Setup Node.js environment
14
uses: actions/setup-node@v2.5.2
13
15
with:
14
16
node-version: "18.x"
15
17
- run: npm ci
16
18
- run: npm run prettier
17
19
- name: Commit changes
18
uses: stefanzweifel/git-auto-commit-action@v4.1.2
20
uses: stefanzweifel/git-auto-commit-action@v4.16.0
19
21
with:
20
22
commit_message: Apply prettier changes
21
23
branch: ${{ github.head_ref }}