Skip to content

Align JS/TS sample SSL configuration #16

Align JS/TS sample SSL configuration

Align JS/TS sample SSL configuration #16

name: Typescript Sequelize integration tests
on:
push:
branches: [ "main" ]
paths:
- 'typescript/sequelize/**'
- '.github/workflows/typescript-sequelize-integ-tests.yml'
pull_request:
branches: [ "main" ]
paths:
- 'typescript/sequelize/**'
- '.github/workflows/typescript-sequelize-integ-tests.yml'
# Give us a button to allow running the workflow on demand for testing.
workflow_dispatch:
inputs:
tags:
description: 'Manual Workflow Run'
required: false
type: string
jobs:
sequelize-integ-test:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
# Explicitly set permissions, following the principle of least privilege
actions: read
checks: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.TYPESCRIPT_IAM_ROLE }}
aws-region: us-east-1
- name: Configure and run integration for Sequelize
working-directory: ./typescript/sequelize
env:
CLUSTER_ENDPOINT: ${{ secrets.TYPESCRIPT_SEQUELIZE_CLUSTER_ENDPOINT}}
REGION: ${{ secrets.TYPESCRIPT_SEQUELIZE_CLUSTER_REGION}}
CLUSTER_USER: 'admin'
run: |
npm install
npm run test