Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

chore(deps-dev): bump typescript from 5.1.3 to 5.1.5 #2997

chore(deps-dev): bump typescript from 5.1.3 to 5.1.5

chore(deps-dev): bump typescript from 5.1.3 to 5.1.5 #2997

name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint and test
run: |
npm run lint
npm run test
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage
fail_ci_if_error: true
deploy:
needs:
- build
concurrency:
group: ${{ github.workflow }}-${{ github.job }}
environment: Production
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: arn:aws:iam::160845942221:role/GitHubOpenIdConnect-Role-C5NSLXSP0L1S
aws-region: us-east-1
- name: Deploy stack
run: npm run cdk deploy --all