Skip to content

chore(ci): add GitHub workflow to build+format #6

chore(ci): add GitHub workflow to build+format

chore(ci): add GitHub workflow to build+format #6

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: corepack
run: npm i -g corepack
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "yarn"
- name: install
run: yarn
- name: format
run: yarn format
- name: build
run: |
yarn cdk synth
yarn build:frontend