From a563a04c65ba452b86f2616fa50dacb85380c5b1 Mon Sep 17 00:00:00 2001 From: Arthur Wambst Date: Wed, 11 Jun 2025 16:21:51 +0200 Subject: [PATCH] feat: added actions tests --- .gitea/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 402ade6..3f573cc 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,5 +1,5 @@ -name: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions +name: Build +run-name: CI/CD website on: [push] jobs: @@ -12,11 +12,11 @@ jobs: uses: actions/setup-node@v4 with: node-version: '24.x' - - name: install dep + - name: Install dependencies run: | cd banquise-website npm ci - - name: build + - name: Building run: | cd banquise-website npm run build