From 82eee2ca4cd645e2078fc9bf820388147bae0d25 Mon Sep 17 00:00:00 2001 From: robin <binkrassdufass@gmail.com> Date: Sat, 16 Dec 2023 21:12:14 +0000 Subject: [PATCH] test --- .gitea/workflows/deploy.yaml | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 2ab3a4b..d627df5 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -2,6 +2,32 @@ name: deploy to production on: "push" jobs: + lighthouse-evaluation: + runs-on: ubuntu-latest + container: + image: node:20-alpine3.19 + env: + API_URL: some-url.com + ports: + - 80 + steps: + - uses: actions/checkout@v3 + - name: log node & os versions + run: | + node -vss + cat /etc/os-release + echo $API_URL + - name: container within a step + uses: docker://node:20-alpine3.19 + with: + entrypoint: /usr/local/bin/node + args: -p 2 + 3 + + - name: log node version + uses: docker://node:20-alpine3.19 + with: + entrypoint: /usr/local/bin/node + args: -v deploy: name: deploy runs-on: ubuntu-latest @@ -160,5 +186,3 @@ jobs: RSYNC_PASS: ${{ secrets.rsync_master }} run: | scripts/deploy.sh ftp1.webmakers.de $RSYNC_USER $RSYNC_PASS - -#