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