From 10d24f5f7efb3d0d735d7e52f7eca9485b9b1b35 Mon Sep 17 00:00:00 2001 From: xiaowei Date: Tue, 5 Jan 2021 19:06:43 +0800 Subject: [PATCH] ci: add build stage --- .github/workflows/nodejs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 1fe47b4..7fd4bf3 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -17,9 +17,10 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - name: npm install, build, and test + - name: npm install, test, and build run: | npm install npm test + npm run build env: CI: true