From 06222d0f3cc2b6cedd2f8f24b114418f31a1024c Mon Sep 17 00:00:00 2001 From: lukas Date: Sat, 26 Jul 2025 18:25:16 +0000 Subject: [PATCH] Update .gitea/workflows/tmate.yml . --- .gitea/workflows/tmate.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/tmate.yml b/.gitea/workflows/tmate.yml index f68adc0..6c3e50b 100644 --- a/.gitea/workflows/tmate.yml +++ b/.gitea/workflows/tmate.yml @@ -1,13 +1,19 @@ -name: checkout - +name: CI on: push: - branches: - - main # Or your desired branch - + branches: [ main ] jobs: - checkout: - runs-on: git.phyllo.me/roots/fedora-iso-creation:42 + container-test-job: + runs-on: ubuntu-latest + container: + image: node:18 + env: + NODE_ENV: development + ports: + - 80 + volumes: + - my_docker_volume:/volume_mount + options: --cpus 1 steps: - - name: Setup tmate session - uses: https://github.com/mxschmitt/action-tmate@v3 \ No newline at end of file + - name: Check for dockerenv file + run: (ls /.dockerenv && echo Found dockerenv) || (echo No dockerenv) \ No newline at end of file