Skip to content

Commit 3fcbd78

Browse files
committed
build: set environment variable
1 parent 4aac11c commit 3fcbd78

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/run_tests_coverage.yml

+2
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@
221221
222222
# Commit and push changes:
223223
- name: 'Commit and push changes'
224+
env:
225+
GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
224226
run: |
225227
cd ./www-test-code-coverage
226228
git add .

lib/node_modules/@stdlib/utils/async/any-by-right/lib/main.js

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ var factory = require( './factory.js' );
3333
* - If a predicate function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the `done` callback for subsequent error handling.
3434
* - This function does **not** guarantee that execution is asynchronous. To do so, wrap the `done` callback in a function which either executes at the end of the current stack (e.g., `nextTick`) or during a subsequent turn of the event loop (e.g., `setImmediate`, `setTimeout`).
3535
*
36-
*
3736
* @param {Collection} collection - input collection
3837
* @param {Options} [options] - function options
3938
* @param {*} [options.thisArg] - execution context

0 commit comments

Comments
 (0)