chore(config): migrate renovate config (#22) #40
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: GLuaLint | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 12 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 12 | |
- name: npm for Lua lint | |
run: | | |
export PATH=$PATH:/tmp/bin | |
mkdir -p /tmp/bin | |
pushd /tmp/bin | |
wget -q https://github.com/FPtje/GLuaFixer/releases/download/1.17.3/glualint-1.17.3-linux-stripped.zip -O glualint.zip | |
unzip glualint.zip | |
chmod +x glualint | |
popd | |
echo "Running linter..." | |
node gluaLintEx.js | |
env: | |
CI: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |