-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (30 loc) · 1.14 KB
/
ci.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
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install metadata validator dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-upgrade \
libicu74 \
libtbb12
- name: Install metadata validator
run: |
wget https://github.com/loot/metadata-validator/releases/download/0.24.0/metadata-validator-0.24.0-0-g36fea7e_0.24.0-Linux.tar.xz -O - | tar -xJ --strip-components=1
ln -s libloot.so.0.24.5 libloot.so.0
- name: Install parser
run: npm install -g js-yaml
- name: Download prelude file
run: wget https://raw.githubusercontent.com/loot/prelude/v0.21/prelude.yaml
- name: Run metadata validator
run: |
./metadata_validator $GITHUB_WORKSPACE/masterlist.yaml
./metadata_validator $GITHUB_WORKSPACE/masterlist.yaml $GITHUB_WORKSPACE/prelude.yaml
js-yaml $GITHUB_WORKSPACE/masterlist.yaml > /dev/null