Skip to content

refurbish the sample application with several enhancements #72

refurbish the sample application with several enhancements

refurbish the sample application with several enhancements #72

Workflow file for this run

name: Create PR Preview
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
preview:
permissions: write-all
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 22
- name: Install CDK
run: |
npm install -g aws-cdk-local aws-cdk
cdklocal --version
- name: Deploy Preview
uses: LocalStack/setup-localstack@endpoint_s3_ephemeral
env:
LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
state-backend: ephemeral
state-action: start
include-preview: 'true'
install-awslocal: 'true'
# Multi line commands are folding for some reason, so we enforce new lines
# For more predictable usage, use script files
preview-cmd: |
export NODE_OPTIONS=--tls-cipher-list="DEFAULT@SECLEVEL=1"
make install;
make deploy;
make frontend;
distributionId=$(awslocal cloudfront list-distributions | jq -r '.DistributionList.Items[0].Id');
echo LS_PREVIEW_URL=$AWS_ENDPOINT_URL/cloudfront/$distributionId/ >> $GITHUB_ENV;