Skip to content

Scrolling HTML rework #1212

Scrolling HTML rework

Scrolling HTML rework #1212

Workflow file for this run

---
name: Pull Request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
- uses: actions/setup-ruby@v1
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Run Luacheck
uses: nebularg/actions-luacheck@v1
with:
args: --no-color -q
files: $(git ls-files '*.lua' ':!:totalRP3/Libs/Ellyb/Libraries/*' ':!:totalRP3/Libs/TaintLess/*' ':!:totalRP3/Locales/????.lua' ':!:Types/*')
annotate: warning
- name: Run editorconfig-checker
uses: wow-rp-addons/[email protected]
with:
args: -no-color
files: $(git ls-files '*.lua' '*.sh' '*.xml' ':!:totalRP3/Libs/Ellyb/Libraries/*' ':!:totalRP3/Libs/TaintLess/*' ':!:totalRP3/Locales/*.lua')
- name: Create Package
uses: BigWigsMods/packager@v2
with:
args: -dz
- uses: actions/upload-artifact@v2
with:
name: totalRP3-PR-${{ github.event.number }}
path: .release/
- name: Send Webhook Notification
if: failure()
run: |
git clone https://github.com/DiscordHooks/github-actions-discord-webhook.git webhook
bash webhook/send.sh $JOB_STATUS $WEBHOOK_URL
env:
JOB_STATUS: ${{ job.status }}
HOOK_OS_NAME: ${{ runner.os }}
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
WORKFLOW_NAME: ${{ github.workflow }}