From f661fb42571cb88ab3fb0158c9b212235ed01d45 Mon Sep 17 00:00:00 2001 From: woothu <32914662+woothu@users.noreply.github.com> Date: Thu, 30 Jan 2020 15:36:26 +0100 Subject: [PATCH] chore: update CI --- .github/workflows/nodejs.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6a828a2d..0d084725 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -26,6 +26,26 @@ jobs: - name: project check run: | npm i - npm run release + npm run clearCache + npm run build + npm run lint + npm run test:unit + env: + CI: true + + e2e-chrome: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: 12 + - name: e2e chrome test + run: | + npm i + npm run test:e2e env: CI: true \ No newline at end of file