From 361202d7f89aea10666304aced526b855966b2e5 Mon Sep 17 00:00:00 2001 From: Wes Todd Date: Sat, 16 Mar 2024 11:59:10 -0500 Subject: [PATCH] build: enable ci workflow trigger --- .github/workflows/ci.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd384f4..3fe1bd4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,13 +1,18 @@ name: ci on: -- pull_request -- push + workflow_dispatch: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened, ready_for_review] jobs: test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: name: - Node.js 0.8 @@ -77,11 +82,11 @@ jobs: - name: Node.js 8.x node-version: "8.17" - npm-i: mocha@7.2.0 + npm-i: mocha@7.2.0 nyc@14.1.1 - name: Node.js 9.x node-version: "9.11" - npm-i: mocha@7.2.0 + npm-i: mocha@7.2.0 nyc@14.1.1 - name: Node.js 10.x node-version: "10.24"