-
-
Notifications
You must be signed in to change notification settings - Fork 2
91 lines (71 loc) · 1.88 KB
/
main.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
82
83
84
85
86
87
88
89
90
91
name: Main
on:
push:
branches:
- main
permissions:
contents: read
jobs:
i18n_translations:
runs-on: ubuntu-latest
permissions:
actions: write
issues: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.5
- name: Install dependencies
run: poetry install
- name: Run translation check script
run: poetry run python .scripts/missing_translation_check.py
- name: Create or Update Issues
run: poetry run python .scripts/create_or_update_i18n_issues.py
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
run_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: 5.3.5
- uses: leafo/gh-actions-luarocks@v4
with:
luarocksVersion: 3.11.1
- name: Install luarock dependencies
run: luarocks make --local rpglootfeed-1-1.rockspec
- name: Run Tests
run: make test-ci
- uses: actions/upload-artifact@v4
with:
name: luacov-html
path: luacov-html/
release:
needs: [run_tests, i18n_translations]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm install
- name: Run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
run: npm run semantic-release