Skip to content

Commit

Permalink
ci(github actions): added build script to execute on all pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
flamingquaks authored May 14, 2024
1 parent 23f7249 commit b79f6ca
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/build-on-every-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# This workflow is designed to build and synthesize each push to reduce risk of failing builds moving into main
name: Build and Synthesize


on:
push:
branches:
- '**'
workflow_dispatch:
jobs:

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: npm ci

- name: Build project
run: npm run build

- name: Upload UI Artifact
uses: actions/upload-artifact@v4
with:
name: built-ui
path: lib/user-interface/genai-newsletter-ui/dist/
- name: Upload AppSync Resolver Artifacts
uses: actions/upload-artifact@v4
with:
name: built-resolver-functions
path: lib/api/functions/out

synthesis:
needs: build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: npm ci

- name: Download UI Artifact
uses: actions/download-artifact@v4
with:
name: built-ui
path: lib/user-interface/genai-newsletter-ui/dist/
merge-multiple: true

- name: Download Resolver Function Artifacts
uses: actions/download-artifact@v4
with:
name: built-resolver-functions
path: lib/api/functions/out/
merge-multiple: true

- name: Generate Configuration file
run: echo "${DEPLOY_CONFIG}" > ./bin/config.json
env:
DEPLOY_CONFIG: ${{ vars.DEPLOY_CONFIG }}

- name: Synthesize CDK
run: npx cdk synth

0 comments on commit b79f6ca

Please sign in to comment.