From 46a5690b5f9da14f4fc65583834256fd59ff112c Mon Sep 17 00:00:00 2001 From: Ben Parsons <9parsonsb@gmail.com> Date: Mon, 3 Jul 2023 20:46:21 +1000 Subject: [PATCH] update actions to include svelte-check --- .gitea/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index dd4f3b4..6a6124b 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -6,9 +6,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Setup node + - name: 🔧 Setup node uses: https://github.com/actions/setup-node@v3 - - name: Install node packages + - name: 🧱 Install node packages run: npm ci - - name: Build project + - name: ✅ svelte-check + run: npm run check + - name: 🔨 Build project run: npm run build