diff --git a/.gitea/workflows/node-build.yaml b/.gitea/workflows/node-build.yaml index ff14a48..27e7d04 100644 --- a/.gitea/workflows/node-build.yaml +++ b/.gitea/workflows/node-build.yaml @@ -1,7 +1,7 @@ name: Node.js CI on: [push] jobs: - build: + build_app: runs-on: ubuntu-latest @@ -13,3 +13,8 @@ jobs: node-version: '20.x' - run: npm ci - run: npm run build --production --if-present + build_image: + needs: build_app + runs: + using: 'docker' + image: 'Dockerfile' \ No newline at end of file