-
Notifications
You must be signed in to change notification settings - Fork 1
81 lines (66 loc) · 1.53 KB
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Lint
on:
push:
paths:
- "**.bolt"
- "**.json"
- "**.mcfunction"
- "beet.yaml"
branches:
- "**"
pull_request:
branches:
- "**"
workflow_dispatch:
env:
VERSION: '1.20'
NAME: '2mal3s-Recipes'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
cache: pip
- name: Install dependencies
run: pip install -r requirements.lock
- name: Build
run: beet
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: artifact
path: |
build/${{ env.NAME }}
mc-commands:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: artifact
- name: Check minecraft commands
uses: mcbeet/check-commands@v1
with:
version: "0.95.0"
source: "."
minecraft: ${{ env.VERSION }}
stats: true
json:
runs-on: ubuntu-latest
needs: build
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: artifact
- name: Install jsonlint
run: npm install -g jsonlint
- name: Lint json files
run: for file in $(find . -name '*.json'); do jsonlint $file -c -q; done