Compare commits

..

3 commits

Author SHA1 Message Date
ZoopaMario d342c2c5ef TEST2
Some checks failed
Lint and Validate / lint-and-validate (push) Failing after 59s
Lint and Validate / lint-and-validate (pull_request) Failing after 26s
2024-12-28 21:27:37 +01:00
ZoopaMario 0ae928675d VERY IMPORTANT DATA 2024-12-28 21:25:37 +01:00
ZoopaMario e95970bbaa Add shellcheck workflow 2024-12-28 21:17:00 +01:00

View file

@ -1,3 +1,4 @@
# .forgejo/workflows/lint-and-validate.yml
name: Lint and Validate
on:
@ -10,17 +11,11 @@ on:
jobs:
lint-and-validate:
runs-on: docker
runs-on: docker # Ensures the job runs in a Docker-based environment
container:
image: debian:bullseye
image: debian:bullseye # Use a lightweight and stable Debian base image
steps:
- name: Install Node.js
run: |
apt-get update && apt-get install -y 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