From 0419e7b6705d010027c11cd2918df9a0ed60ef14 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 1 Jan 2023 01:10:15 +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 08d8571..1685acb 100644 --- a/.github/.keepalive +++ b/.github/.keepalive @@ -1 +1 @@ -2022-12-01T01:42:42.646Z +2023-01-01T01:10:15.130Z 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 f580608..caab807 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,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 6feae06..733eaf4 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "proxyquire": "^2.0.0", "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",