From 1af89dfa75c344226121f3bf093046cfafd5fe87 Mon Sep 17 00:00:00 2001 From: Coston <7424180+coston@users.noreply.github.com> Date: Wed, 25 Sep 2019 11:01:24 -0500 Subject: [PATCH] chore: add build step --- .github/workflows/nodejs-cross-platform.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs-cross-platform.yml b/.github/workflows/nodejs-cross-platform.yml index 9328484a..31172b96 100644 --- a/.github/workflows/nodejs-cross-platform.yml +++ b/.github/workflows/nodejs-cross-platform.yml @@ -15,9 +15,10 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - name: npm install and test + - name: npm install, build, and test run: | npm install + npm run build --if-present npm test env: CI: true