Skip to content

Verify Hello App

Verify Hello App #35

Workflow file for this run

name: Verify Hello App
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 9 * * *'
push:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
pull_request:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md'
jobs:
build-and-run:
runs-on: ubuntu-latest
permissions:
id-token: write # Needed if using OIDC to get release secrets.
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm i
- uses: launchdarkly/gh-actions/actions/[email protected]
with:
use_server_key: true
role_arn: ${{ vars.AWS_ROLE_ARN }}
command: npm start