Skip to content

Commit

Permalink
[Test] Banish luacheck from functional tests
Browse files Browse the repository at this point in the history
 - Use luacheck from GitLab
  • Loading branch information
fatalbanana committed Oct 17, 2023
1 parent 508fe8a commit 80b0d44
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
8 changes: 8 additions & 0 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,14 @@ local noarch_pipeline = {
'./node_modules/.bin/stylelint ./**/*.css ./**/*.html ./**/*.js',
],
},
{
name: 'luacheck',
image: 'pipelinecomponents/luacheck',
pull: 'if-not-exists',
commands: [
'luacheck -q --no-color .',
],
},
],
} + default_trigger + docker_pipeline;

Expand Down
10 changes: 9 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,14 @@
"image": "node:18-alpine",
"name": "eslint",
"pull": "if-not-exists"
},
{
"commands": [
"luacheck -q --no-color ."
],
"image": "pipelinecomponents/luacheck",
"name": "luacheck",
"pull": "if-not-exists"
}
],
"trigger": {
Expand Down Expand Up @@ -553,7 +561,7 @@
}
---
{
"hmac": "3f01ceb14c7dd3ba2f5343fc52216843f72212e1cb25f944c2366d57e78d2b79",
"hmac": "6c89d1423ccbddbfac9e2b67f24192018670209a293cfee308880a16a2f2b372",
"kind": "signature"
}
...
10 changes: 0 additions & 10 deletions test/functional/cases/200_luacheck.robot

This file was deleted.

0 comments on commit 80b0d44

Please sign in to comment.