From 31ffe7ae58fa67af3f321982a7281cd3c952071e Mon Sep 17 00:00:00 2001 From: Limon Monte Date: Fri, 8 Nov 2019 12:41:48 +0200 Subject: [PATCH] chore(ci): add build step, skip tests for now --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e4e629..ab8d100 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,11 @@ jobs: - name: Install npm dependencies run: yarn install - - name: Run tests - run: yarn test + - name: Build + run: yarn build + + # - name: Run tests + # run: yarn test - name: Run automated release process with semantic-release if: github.event_name == 'push' && contains(github.ref, 'master')