From 88f1da8c86445e4c228f3f5eea2b70be79535a71 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Thu, 7 May 2020 00:01:12 +0200 Subject: [PATCH] Cleanup workflows --- .github/workflows/ci.yaml | 2 ++ .github/workflows/test.yml | 9 +++------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2a7440e..739afc0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,10 +4,12 @@ on: pull_request: branches: - master + - feature/* - releases/* push: branches: - master + - feature/* - releases/* jobs: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c053d02..d6de939 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,10 +4,12 @@ on: pull_request: branches: - master + - feature/* - releases/* push: branches: - master + - feature/* - releases/* jobs: @@ -18,14 +20,9 @@ jobs: # https://github.com/actions/checkout name: Checkout uses: actions/checkout@v2 - - - name: Build - run: | - npm install - npm run build - name: Install - run: npm ci + run: npm install - name: Build run: npm run build