From d799b973ee98fc7adfbbfccdec5e2aae7e6a9e69 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Tue, 1 Aug 2023 04:36:11 +0000 Subject: [PATCH] Auto-generated commit --- .github/.keepalive | 1 + .github/workflows/productionize.yml | 6 +++--- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- .github/workflows/test_bundles.yml | 6 +++--- .github/workflows/test_coverage.yml | 2 +- .github/workflows/test_install.yml | 2 +- test/test.factory.js | 2 +- test/test.js | 2 +- test/test.main.js | 2 +- test/test.object_mode.js | 2 +- test/test.validate.js | 2 +- 12 files changed, 16 insertions(+), 15 deletions(-) create mode 100644 .github/.keepalive diff --git a/.github/.keepalive b/.github/.keepalive new file mode 100644 index 0000000..76c5d78 --- /dev/null +++ b/.github/.keepalive @@ -0,0 +1 @@ +2023-08-01T04:36:11.347Z diff --git a/.github/workflows/productionize.yml b/.github/workflows/productionize.yml index 3e8e2db..334eb59 100644 --- a/.github/workflows/productionize.yml +++ b/.github/workflows/productionize.yml @@ -349,7 +349,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} @@ -520,7 +520,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} @@ -697,7 +697,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 26be02d..474004b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -209,7 +209,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 96990f6..30e0827 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,7 +89,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test_bundles.yml b/.github/workflows/test_bundles.yml index e9df6a0..172cb2d 100644 --- a/.github/workflows/test_bundles.yml +++ b/.github/workflows/test_bundles.yml @@ -88,7 +88,7 @@ jobs: # Send notification to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} @@ -130,7 +130,7 @@ jobs: # Send notification to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} @@ -172,7 +172,7 @@ jobs: # Send notification to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index 6d8aa0b..a73c515 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -106,7 +106,7 @@ jobs: # Send Slack notification if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index f4b09ca..507fe4b 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -75,7 +75,7 @@ jobs: # Send Slack notification if job fails: - name: 'Send notification to Slack in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/test/test.factory.js b/test/test.factory.js index d21de6e..98cb543 100644 --- a/test/test.factory.js +++ b/test/test.factory.js @@ -29,7 +29,7 @@ var factory = require( './../lib/factory.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof factory, 'function', 'main export is a function' ); + t.strictEqual( typeof factory, 'function', 'main export is a function' ); t.end(); }); diff --git a/test/test.js b/test/test.js index e074c84..042180c 100644 --- a/test/test.js +++ b/test/test.js @@ -28,7 +28,7 @@ var arrayStream = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof arrayStream, 'function', 'main export is a function' ); + t.strictEqual( typeof arrayStream, 'function', 'main export is a function' ); t.end(); }); diff --git a/test/test.main.js b/test/test.main.js index 4fe5834..72ae7ca 100644 --- a/test/test.main.js +++ b/test/test.main.js @@ -33,7 +33,7 @@ var arrayStream = require( './../lib/main.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof arrayStream, 'function', 'main export is a function' ); + t.strictEqual( typeof arrayStream, 'function', 'main export is a function' ); t.end(); }); diff --git a/test/test.object_mode.js b/test/test.object_mode.js index 9de5745..b23d43e 100644 --- a/test/test.object_mode.js +++ b/test/test.object_mode.js @@ -30,7 +30,7 @@ var objectMode = require( './../lib/object_mode.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof objectMode, 'function', 'main export is a function' ); + t.strictEqual( typeof objectMode, 'function', 'main export is a function' ); t.end(); }); diff --git a/test/test.validate.js b/test/test.validate.js index b75b050..e4e3ace 100644 --- a/test/test.validate.js +++ b/test/test.validate.js @@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof validate, 'function', 'main export is a function' ); + t.strictEqual( typeof validate, 'function', 'main export is a function' ); t.end(); });