From ae1131255d78cc7a57573c4b558e0294038728c8 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 1 Jan 2023 01:24:35 +0000 Subject: [PATCH] Auto-generated commit --- .github/.keepalive | 2 +- .github/workflows/productionize.yml | 10 ++++++++++ .gitignore | 1 + README.md | 2 +- package.json | 2 +- 5 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/.keepalive b/.github/.keepalive index 32eeb30..b46409d 100644 --- a/.github/.keepalive +++ b/.github/.keepalive @@ -1 +1 @@ -2022-12-01T01:32:55.985Z +2023-01-01T01:24:34.768Z 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/.gitignore b/.gitignore index 63e9afd..9641214 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ # Files # ######### package.json.copy +.stdlibrc # Directories # ############### diff --git a/README.md b/README.md index 197c7e8..3269a5a 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ See [LICENSE][stdlib-license]. ## 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 94b24ad..e2ee2cb 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "@stdlib/random-base-randu": "^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",