diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-18 15:35:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-18 15:35:24 -0500 |
commit | e72152bf6170a87f180e8bb21bfd00f359e0d1a6 (patch) | |
tree | d3bc44b0299cb45f34805b39829720afbf5c7c03 /.github | |
parent | cbc5ab5696a64fe10d5a37d25cc6e87d8d44481f (diff) |
Build fixes (#1273)
* Move build step to the end of continuous integration
* Fix manifest mismatch
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7458d199..c8b2adef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,6 @@ jobs: node-version: '12.x' - name: Install dependencies run: npm ci - - name: Build - run: npm run build --if-present - name: Lint run: npm run test-lint env: @@ -33,3 +31,5 @@ jobs: run: npm run test-manifest env: CI: true + - name: Build + run: npm run test-build |