Delete .forgejo/workflows/ci.yaml
Some checks failed
/ build (push) Failing after 8s

This commit is contained in:
rangelovk 2026-07-08 21:28:21 +00:00
parent fc8271330f
commit f16b77b3d4

View file

@ -1,30 +0,0 @@
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: docker
container:
image: node:22-bookworm
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Show environment
run: |
echo "Branch: ${{ github.ref_name }}"
echo "Commit: ${{ github.sha }}"
node --version
- name: Run a fake test
run: |
echo "Pretending to test..."
test 1 -eq 1 && echo "OK ✅"