From fefe4105face9b3d3911fc340bb8fa0d8480e5ea Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Wed, 15 Jun 2022 16:47:41 +0200 Subject: [PATCH] Create build job for the CI --- .github/workflows/ci.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a01efbf..1a6342a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,14 +17,15 @@ jobs: node-version: '16' - run: npm install - run: npm run lint - # Fix and re-activate after https://github.com/cosmos/cosmos-multisig-ui/pull/61 - # build: - # runs-on: ubuntu-20.04 - # steps: - # - uses: actions/checkout@v2 - # - name: Setup Node.js - # uses: actions/setup-node@v2 - # with: - # node-version: '16' - # - run: npm install - # - run: npm run build + + build: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '16' + - run: npm install + - run: cp .env.sample .env.local + - run: npm run build