Classic/Stratholme/Balnazzar: Add boss module #1022
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PR | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout addon | |
uses: actions/checkout@v4 | |
- name: Run luacheck | |
uses: BigWigsMods/actions/luacheck@master | |
with: | |
args: -q | |
config: https://raw.githubusercontent.com/BigWigsMods/BigWigs/master/.luacheckrc | |
- name: Download common locale | |
if: always() | |
run: | | |
mkdir -p Core/Locales | |
curl -sS https://raw.githubusercontent.com/BigWigsMods/BigWigs/master/Core/Locales/common.enUS.lua > Core/Locales/common.enUS.lua | |
- name: Lint boss modules (Retail) | |
if: always() | |
uses: BigWigsMods/actions/gen-options@master | |
with: | |
path: LittleWigs_Mainline.toc | |
quiet: true | |
lint: true | |
- name: Lint boss modules (Classic Era Vanilla) | |
if: always() | |
uses: BigWigsMods/actions/gen-options@master | |
with: | |
path: LittleWigs_Vanilla.toc | |
quiet: true | |
lint: true | |
- name: Lint boss modules (Burning Crusade Classic) | |
if: always() | |
uses: BigWigsMods/actions/gen-options@master | |
with: | |
path: LittleWigs_TBC.toc | |
quiet: true | |
lint: true | |
- name: Lint boss modules (Wrath Classic) | |
if: always() | |
uses: BigWigsMods/actions/gen-options@master | |
with: | |
path: LittleWigs_Wrath.toc | |
quiet: true | |
lint: true | |
- name: Lint boss modules (Cataclysm Classic) | |
if: always() | |
uses: BigWigsMods/actions/gen-options@master | |
with: | |
path: LittleWigs_Cata.toc | |
quiet: true | |
lint: true |