Compare commits

...

2 Commits

Author SHA1 Message Date
a39b81f4b9
fix(cicd): move back to ubuntu-latest as full ubuntu is not needed
Some checks failed
StyLua / StyLuacheck (push) Failing after 3m6s
2023-10-04 08:46:28 +02:00
634b1c2964
fix(cicd-luacheck): missing : 2023-10-04 08:46:04 +02:00
2 changed files with 3 additions and 3 deletions

@ -2,13 +2,13 @@ name: Luacheck
on: [push, pull_request]
jobs:
Luacheck:
runs-on: ubuntu-full-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Luacheck
run |
run: |
apt update && apt -y install lua-check
- name: Luacheck linter

@ -2,7 +2,7 @@ name: StyLua
on: [push, pull_request]
jobs:
StyLuacheck:
runs-on: ubuntu-full-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3