From 7153e804d96a3739d3233038f3028f7f15503c53 Mon Sep 17 00:00:00 2001 From: Artur Finger Date: Mon, 20 Nov 2023 13:03:26 +0200 Subject: [PATCH] Cleanup "Build" action --- .github/workflows/ci-build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 2fab8cd..7b6068a 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -1,4 +1,4 @@ -name: CI Build +name: Build on: push: @@ -7,12 +7,12 @@ on: pull_request: branches: - main - + jobs: build: name: Build runs-on: [ubuntu-latest] - + steps: - uses: actions/checkout@v3 @@ -21,7 +21,7 @@ jobs: with: node-version: 16 cache: npm - + - name: NPM Install run: npm ci