Compare commits

...

3 commits

Author SHA1 Message Date
ZoopaMario e2ad48f4ea TEST2
Some checks failed
Lint and Validate / lint-and-validate (pull_request) Failing after 1m43s
2024-12-28 22:00:43 +01:00
ZoopaMario cd9872e4c0 VERY IMPORTANT DATA 2024-12-28 22:00:43 +01:00
ZoopaMario e8399bda00 Add shellcheck workflow 2024-12-28 21:59:02 +01:00
3 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,45 @@
name: Lint and Validate
on:
push:
paths:
- '**/*.sh'
pull_request:
paths:
- '**/*.sh'
jobs:
lint-and-validate:
runs-on: docker
container:
image: debian:bullseye
steps:
- name: Install Prerequisites
run: |
apt-get update && apt-get install -y git curl
curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
apt-get install -y nodejs
- name: Checkout Code
uses: https://code.forgejo.org/actions/checkout@v4
with:
fetch-depth: 0 # Fetch the entire history to avoid REST API reliance
- name: Install ShellCheck
run: |
apt-get update && apt-get install -y shellcheck
- name: Lint Bash Scripts
run: |
echo "Linting Bash scripts..."
find . -name '*.sh' -print0 | xargs -0 shellcheck
- name: Check Commit Messages
run: |
echo "Checking commit message format..."
if ! git log -1 --pretty=%B | grep -Eq '^(feat|fix|chore|docs|style|refactor|test|perf):'; then
echo "Commit message does not follow the conventional format: <type>: <subject>"
exit 1
fi

0
bliblablubb Normal file
View file

1
test.sh Normal file
View file

@ -0,0 +1 @@
NOT VALID