Skip to content

Commit 2ae5f73

Browse files
authored
Merge branch 'stdlib-js:develop' into repl
2 parents 10de907 + 3080f03 commit 2ae5f73

File tree

112 files changed

+881
-1204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+881
-1204
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ jobs:
4545
# Define a display name:
4646
name: 'Analyze'
4747

48+
# Ensure the job does not run on forks:
49+
if: github.repository == 'stdlib-js/stdlib'
50+
4851
# Define the type of virtual host machine.
4952
#
5053
# ## Notes

.github/workflows/lint_random_files.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ jobs:
8282
# Define a display name:
8383
name: 'Lint Random Files'
8484

85+
# Ensure the job does not run on forks:
86+
if: github.repository == 'stdlib-js/stdlib'
87+
8588
# Define the type of virtual host machine:
8689
runs-on: ubuntu-latest
8790

.github/workflows/linux_test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
# Define a display name:
5252
name: "Node.js v${{ matrix.NODE_VERSION }}"
5353

54+
# Ensure the job does not run on forks:
55+
if: github.repository == 'stdlib-js/stdlib'
56+
5457
# Define the type of virtual host machine:
5558
runs-on: ${{ matrix.OS }}
5659

@@ -273,7 +276,7 @@ jobs:
273276
needs: test
274277

275278
# Run this job regardless of the outcome of the prior job:
276-
if: always()
279+
if: success() || failure()
277280

278281
# Set defaults:
279282
defaults:

.github/workflows/linux_test_install.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
# Define a display name:
5252
name: "Node.js v${{ matrix.NODE_VERSION }} - ${{ matrix.PACKAGE_MANAGER }}"
5353

54+
# Ensure the job does not run on forks:
55+
if: github.repository == 'stdlib-js/stdlib'
56+
5457
# Define the type of virtual host machine:
5558
runs-on: ${{ matrix.OS }}
5659

@@ -297,7 +300,7 @@ jobs:
297300
needs: test_install
298301

299302
# Run this job regardless of the outcome of the prior job:
300-
if: always()
303+
if: success() || failure()
301304

302305
# Set defaults:
303306
defaults:

.github/workflows/macos_test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
# Define a display name:
5252
name: "Node.js v${{ matrix.NODE_VERSION }}"
5353

54+
# Ensure the job does not run on forks:
55+
if: github.repository == 'stdlib-js/stdlib'
56+
5457
# Define the type of virtual host machine on which to run the job:
5558
runs-on: ${{ matrix.OS }}
5659

@@ -259,7 +262,7 @@ jobs:
259262
needs: test
260263

261264
# Run this job regardless of the outcome of the prior job:
262-
if: always()
265+
if: success() || failure()
263266

264267
# Set defaults:
265268
defaults:

.github/workflows/macos_test_npm_install.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
# Define a display name:
5252
name: "Node.js v${{ matrix.NODE_VERSION }}"
5353

54+
# Ensure the job does not run on forks:
55+
if: github.repository == 'stdlib-js/stdlib'
56+
5457
# Define the type of virtual host machine on which to run the job:
5558
runs-on: ${{ matrix.OS }}
5659

@@ -255,8 +258,8 @@ jobs:
255258
# Indicate that this job depends on the prior job finishing:
256259
needs: test_npm_install
257260

258-
# Always run this job regardless of the outcome of the prior job:
259-
if: always()
261+
# Run this job regardless of the outcome of the prior job:
262+
if: success() || failure()
260263

261264
# Set defaults:
262265
defaults:

.github/workflows/markdown_links.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
# Define a display name:
4343
name: 'Check links'
4444

45+
# Ensure the job does not run on forks:
46+
if: github.repository == 'stdlib-js/stdlib'
47+
4548
# Define the type of virtual host machine:
4649
runs-on: ubuntu-latest
4750

.github/workflows/markdown_pkg_urls.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
# Define a display name:
4343
name: 'Update Markdown stdlib package URLs'
4444

45+
# Ensure the job does not run on forks:
46+
if: github.repository == 'stdlib-js/stdlib'
47+
4548
# Define the type of virtual host machine:
4649
runs-on: ubuntu-latest
4750

.github/workflows/markdown_related_packages.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ jobs:
4747
# Define a display name:
4848
name: 'Update related packages section of READMEs'
4949

50+
# Ensure the job does not run on forks:
51+
if: github.repository == 'stdlib-js/stdlib'
52+
5053
# Define the type of virtual host machine:
5154
runs-on: ubuntu-latest
5255

.github/workflows/npm_downloads.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ jobs:
4343
# Define a display name:
4444
name: 'Retrieve npm Download Counts'
4545

46+
# Ensure the job does not run on forks:
47+
if: github.repository == 'stdlib-js/stdlib'
48+
4649
# Define the type of virtual host machine on which to run the job:
4750
runs-on: ubuntu-latest
4851

0 commit comments

Comments
 (0)