PR-984903: updating packages.

This commit is contained in:
2023-11-20 17:36:17 +00:00
parent fe8e2e5073
commit 60631db519
3 changed files with 127 additions and 127 deletions

View File

@ -11,8 +11,8 @@ on:
# Define the jobs that will run in the workflow
jobs:
# Job to run tests
test:
# Job to run back-end tests
integration-back-end-testing:
runs-on: ubuntu-latest
strategy:
matrix:
@ -32,7 +32,7 @@ jobs:
# Job to build the package
test-build-package:
if: github.ref != 'refs/heads/master'
needs: test
needs: integration-back-end-testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@ -46,7 +46,7 @@ jobs:
# Job to publish the package to npm
publish-npm:
if: github.ref == 'refs/heads/master'
needs: test
needs: integration-back-end-testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3