From f737d7da6f243e868ea45c256bdbff03d66fdd78 Mon Sep 17 00:00:00 2001 From: Dominic Elm Date: Sun, 5 Dec 2021 19:06:30 +0100 Subject: [PATCH] ci: run build --- .github/workflows/main.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dd79e2b..d191988 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,9 +5,9 @@ on: branches: [master] jobs: - test-and-lint: + build-test-and-lint: runs-on: ubuntu-latest - name: Test and Lint + name: Build, Test and Lint steps: - name: Checkout uses: actions/checkout@v2 @@ -32,11 +32,14 @@ jobs: - name: Install run: yarn --frozen-lockfile + - name: Build + run: yarn build:lib + - name: Test - run: npm run test + run: yarn test - name: Lint and Format - run: npm run lint:ci + run: yarn lint:ci e2e: name: Cypress on Chrome runs-on: ubuntu-latest