Compare commits

..

3 commits

Author SHA1 Message Date
ZoopaMario f5b3d6940c TEST2
Some checks failed
Lint and Validate / lint-and-validate (pull_request) Failing after 1m55s
2024-12-28 21:37:11 +01:00
ZoopaMario 6d1b261f96 VERY IMPORTANT DATA 2024-12-28 21:37:11 +01:00
ZoopaMario 20dd94efac Add shellcheck workflow 2024-12-28 21:35:04 +01:00

View file

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