diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6084033..0ab3b2f 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -8,15 +8,19 @@ on: jobs: deploy: runs-on: ubuntu-latest - container: - image: node:20 steps: # ── 1. Checkout ────────────────────────────────────────────────────────── - name: Checkout repository uses: actions/checkout@v4 - # ── 2. PHP + Composer ──────────────────────────────────────────────────── + # ── 2. Node.js ─────────────────────────────────────────────────────────── + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + # ── 3. PHP + Composer ──────────────────────────────────────────────────── - name: Set up PHP uses: shivammathur/setup-php@v2 with: