From 3398e967c4622890b5de836b4a3858e1170f32e7 Mon Sep 17 00:00:00 2001 From: Chuck MANCHUCK Reeves Date: Wed, 9 Aug 2023 15:58:23 +0000 Subject: [PATCH] build: updating actions --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c631eb1..240fc705 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,6 @@ on: pull_request: jobs: test: - continue-on-error: ${{ matrix.experimental }} runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -22,7 +21,10 @@ jobs: node-version: ${{ matrix.node }} - name: Install typescript - run: npm install -g typescript npm${{ matrix.npm_version }} && npm install + run: npm install -g typescript npm${{ matrix.npm_version }} + + - name: Install packages + run: npm install - name: Lint, Compile, Test run: npm run compile && npm run test -- --coverage --verbose --maxWorkers=2