Skip to content

Commit 1fd85b9

Browse files
committed
Tests checking for QNetworkReply error codes updates
1 parent d7fe973 commit 1fd85b9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/checkForCodeUpdates.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,16 @@ jobs:
1919
script: |
2020
const path = require( 'path' );
2121
await require( path.resolve( './.github/checkForHttpStatusCodesUpdate.js' ) )( { github, core, context, dryRun: false } );
22+
23+
check-qnetworkreply-error-codes-update:
24+
name: Check for QNetworkReply Error Codes Update
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v2
28+
- uses: actions/setup-node@v1
29+
- run: npm install
30+
- uses: actions/github-script@v2
31+
with:
32+
script: |
33+
const path = require( 'path' );
34+
await require( path.resolve( './.github/checkQNetworkReplyErrorCodeUpdate.js' ) )( { github, core, context, dryRun: true } );

0 commit comments

Comments
 (0)