Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/javascript-cm-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Configure and run integration for cluster management
working-directory: ./javascript/cluster_management
run: |
npm install
npm ci
npm test

cleanup:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/javascript-node-postgres-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ jobs:
REGION: ${{ secrets.JAVASCRIPT_NODEJS_CLUSTER_REGION }}
CLUSTER_USER: 'admin'
run: |
npm install
npm ci
npm test

2 changes: 1 addition & 1 deletion .github/workflows/javascript-postgresjs-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ jobs:
REGION: ${{ secrets.JAVASCRIPT_POSTGRESJS_CLUSTER_REGION }}
CLUSTER_USER: 'admin'
run: |
npm install
npm ci
npm test
6 changes: 3 additions & 3 deletions .github/workflows/lambda-nodejs-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:

- name: Install dependencies
run: |
npm install
npm --prefix ./sample install
npm ci
npm --prefix ./sample ci

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down Expand Up @@ -130,5 +130,5 @@ jobs:
if: always() # Run even if previous steps failed
run: |
echo "Cleaning up CDK deployment"
npm install
npm ci
npx cdk destroy --force --require-approval never --no-lookups 2>&1 | sed -E 's/[0-9]{12}/XXXXXXXXXXXX/g'
2 changes: 1 addition & 1 deletion .github/workflows/typescript-sequelize-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ jobs:
REGION: ${{ secrets.TYPESCRIPT_SEQUELIZE_CLUSTER_REGION}}
CLUSTER_USER: 'admin'
run: |
npm install
npm ci
npm run test
2 changes: 1 addition & 1 deletion .github/workflows/typescript-type-orm-integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
CLUSTER_ENDPOINT: ${{ secrets.TYPESCRIPT_TYPE_ORM_CLUSTER_ENDPOINT }}
REGION: ${{ secrets.TYPESCRIPT_TYPE_ORM_CLUSTER_REGION }}
run: |
npm install
npm ci
npm run build
npm run migrations-drop-table
npm run migrations-create-table
Expand Down
Loading
Loading