Skip to content

Commit

Permalink
Dependency & Maintenance update (#235) (#236)
Browse files Browse the repository at this point in the history
* Dependency & Maintenance update (#235)

* Fix stuck on uploading [MRA-739] (#209)

* Simple error if queueItem did not get updated when a streamBulk job is created [MRA-739] 

* Bump the development-dependencies group with 3 updates (#208) (#210)
Updates `@babel/core` from 7.23.2 to 7.23.3
Updates `@babel/plugin-transform-runtime` from 7.23.2 to 7.23.3
Updates `@babel/preset-env` from 7.23.2 to 7.23.3

* Bump the development-dependencies group with 6 updates (#234)
| Package | From | To |
| --- | --- | --- |
| [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) | `7.23.0` | `7.23.4` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.23.3` | `7.23.7` |
| [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) | `7.23.3` | `7.23.7` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.23.3` | `7.23.8` |
| [@babel/register](https://github.com/babel/babel/tree/HEAD/packages/babel-register) | `7.22.15` | `7.23.7` |
| [eslint](https://github.com/eslint/eslint) | `8.53.0` | `8.56.0` |

* Bump the production-dependencies group with 5 updates (#233)
| Package | From | To |
| --- | --- | --- |
| [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) | `7.23.2` | `7.23.8` |
| [@natlibfi/melinda-backend-commons](https://github.com/natlibfi/melinda-backend-commons-js) | `2.2.2` | `2.2.5` |
| [@natlibfi/melinda-commons](https://github.com/natlibfi/melinda-commons-js) | `13.0.8-alpha.1` | `13.0.10` |
| [moment](https://github.com/moment/moment) | `2.29.4` | `2.30.1` |
| [nodemon](https://github.com/remy/nodemon) | `3.0.1` | `3.0.2` |

* Update passport: v0.7.0
* Update melinda-common: v13.0.10
* Update rest-api-common: v4.1.0-alpha.4

* Node tests: 16.x -> 19.x
* Update test webhooks

* 3.3.3-alpha.2

* Update deps

* 3.3.3
  • Loading branch information
ammsalme authored Jan 18, 2024
1 parent bb61217 commit 39a2045
Show file tree
Hide file tree
Showing 3 changed files with 1,101 additions and 979 deletions.
38 changes: 28 additions & 10 deletions .github/workflows/melinda-node-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 19.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down Expand Up @@ -91,12 +91,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Test webhook
uses: joelwmale/webhook-action@master
if: github.ref == 'refs/heads/test'
with:
url: ${{ secrets.WEBHOOK_URL_TEST }}
body: '{}'
- name: Production bib webhook
uses: joelwmale/webhook-action@master
if: github.ref == 'refs/heads/master'
Expand All @@ -109,9 +103,33 @@ jobs:
with:
url: ${{ secrets.WEBHOOK_URL_AUTNAMES_PROD_FROM_MASTER }}
body: '{}'
- name: Test aut-names webhook
- name: Test aut aux webhook
uses: joelwmale/webhook-action@master
if: github.ref == 'refs/heads/test'
with:
url: ${{ secrets.WEBHOOK_URL_AUTNAMES_TEST_FROM_TEST }}
body: '{}'
url: ${{ secrets.WEBHOOK_URL_AUT_AUX_TEST_FROM_TEST }}
body: '{}'
- name: Test aut names webhook
uses: joelwmale/webhook-action@master
if: github.ref == 'refs/heads/test'
with:
url: ${{ secrets.WEBHOOK_URL_AUT_NAMES_TEST_FROM_TEST }}
body: '{}'
- name: Test aut subjects webhook
uses: joelwmale/webhook-action@master
if: github.ref == 'refs/heads/test'
with:
url: ${{ secrets.WEBHOOK_URL_AUT_SUBJECTS_TEST_FROM_TEST }}
body: '{}'
- name: Test aut works webhook
uses: joelwmale/webhook-action@master
if: github.ref == 'refs/heads/test'
with:
url: ${{ secrets.WEBHOOK_URL_AUT_WORKS_TEST_FROM_TEST }}
body: '{}'
- name: Test bib webhook
uses: joelwmale/webhook-action@master
if: github.ref == 'refs/heads/test'
with:
url: ${{ secrets.WEBHOOK_URL_BIB_TEST_FROM_TEST }}
body: '{}'
Loading

0 comments on commit 39a2045

Please sign in to comment.