From 04d87e611394ed0e9cf10f61a0022dfa882494bb Mon Sep 17 00:00:00 2001 From: Arthur Wambst Date: Wed, 11 Jun 2025 16:12:58 +0200 Subject: [PATCH] test in cd --- .gitea/workflows/build.yaml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index df77832..cdb3cca 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -8,16 +8,13 @@ jobs: steps: - name: Check out repository code uses: actions/checkout@v4 - - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." - - run: cd banquise-website - name: Use Node.js uses: actions/setup-node@v4 with: node-version: '24.x' - - run: ls - - run: npm ci - - run: npm run build + - run: | + cd banquise-website + npm ci + - run: | + cd banquise-website + npm run build