Skip to content

Commit

Permalink
build: set environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Aug 2, 2023
1 parent 4aac11c commit 3fcbd78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/run_tests_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@
# Commit and push changes:
- name: 'Commit and push changes'
env:
GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
run: |
cd ./www-test-code-coverage
git add .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ var factory = require( './factory.js' );
* - 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.
* - 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`).
*
*
* @param {Collection} collection - input collection
* @param {Options} [options] - function options
* @param {*} [options.thisArg] - execution context
Expand Down

1 comment on commit 3fcbd78

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
utils/async/any-by-right 547/547 63/63 8/8 547/547

The above coverage report was generated for the changes in this push.

Please sign in to comment.