From 7429730ff2af92fc64b578d05e4824d1f0bf0a99 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 1 Jan 2023 00:39:20 +0000 Subject: [PATCH] Auto-generated commit --- .github/.keepalive | 1 + .github/workflows/productionize.yml | 10 ++++++++++ README.md | 2 +- package.json | 2 +- 4 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .github/.keepalive diff --git a/.github/.keepalive b/.github/.keepalive new file mode 100644 index 0000000..54f7a09 --- /dev/null +++ b/.github/.keepalive @@ -0,0 +1 @@ +2023-01-01T00:39:20.029Z diff --git a/.github/workflows/productionize.yml b/.github/workflows/productionize.yml index 37ddb4f..f4eea88 100644 --- a/.github/workflows/productionize.yml +++ b/.github/workflows/productionize.yml @@ -28,6 +28,11 @@ on: # Allow the workflow to be manually run: workflow_dispatch: + inputs: + require-passing-tests: + description: 'Require passing tests for creating bundles' + type: boolean + default: true # Concurrency group to prevent multiple concurrent executions: concurrency: @@ -134,6 +139,7 @@ jobs: # Checkout the repository: - name: 'Checkout repository' + if: ${{ github.event.inputs.require-passing-tests == 'true' }} uses: actions/checkout@v3 with: # Use the `production` branch: @@ -141,6 +147,7 @@ jobs: # Install Node.js: - name: 'Install Node.js' + if: ${{ github.event.inputs.require-passing-tests == 'true' }} uses: actions/setup-node@v3 with: node-version: 16 @@ -148,6 +155,7 @@ jobs: # Install dependencies: - name: 'Install production and development dependencies' + if: ${{ github.event.inputs.require-passing-tests == 'true' }} id: install run: | npm install || npm install || npm install @@ -155,6 +163,7 @@ jobs: # Build native add-on if present: - name: 'Build native add-on (if present)' + if: ${{ github.event.inputs.require-passing-tests == 'true' }} run: | if [ -f "binding.gyp" ]; then npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild @@ -162,6 +171,7 @@ jobs: # Run tests: - name: 'Run tests' + if: ${{ github.event.inputs.require-passing-tests == 'true' }} id: tests run: | npm test || npm test || npm test diff --git a/README.md b/README.md index 44b2636..43fffd9 100644 --- a/README.md +++ b/README.md @@ -235,7 +235,7 @@ For more information on the project, filing bug reports and feature requests, an ## Copyright -Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors]. +Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors]. diff --git a/package.json b/package.json index 64f7240..51c481f 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "@stdlib/string-replace": "^0.0.x", "tape": "git+https://github.com/kgryte/tape.git#fix/globby", "istanbul": "^0.4.1", - "tap-min": "2.x.x" + "tap-min": "git+https://github.com/Planeshifter/tap-min.git" }, "engines": { "node": ">=0.10.0",