From d9b9ca4e2734b397ea8017356f2cb2af61239dd1 Mon Sep 17 00:00:00 2001 From: gnuxie Date: Fri, 1 Jul 2022 18:11:31 +0100 Subject: [PATCH] Seperate out install, build and lint since github only says install. --- .github/workflows/mjolnir.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mjolnir.yml b/.github/workflows/mjolnir.yml index 6b8525e..0997200 100644 --- a/.github/workflows/mjolnir.yml +++ b/.github/workflows/mjolnir.yml @@ -20,10 +20,9 @@ jobs: uses: actions/setup-node@v3 with: node-version: '16' - - run: | - yarn install - yarn build - yarn lint + - run: yarn install + - run: yarn build + - run: yarn lint integration: name: Integration tests runs-on: ubuntu-latest