Skip to content

ci: fix stylua installation #45

ci: fix stylua installation

ci: fix stylua installation #45

Workflow file for this run

---
name: Linting and style checking
on: [push]
jobs:
luacheck:
name: Luacheck
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Prepare
run: |
sudo apt-get update
sudo apt-get install -y luarocks
sudo luarocks install luacheck
- name: Lint
run: make lint_luacheck
stylua:
name: stylua
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Prepare
run: |
sudo apt-get update
sudo apt install nodejs
npm install @johnnymorganz/stylua-bin
- name: Lint
run: make lint_stylua