##############################################
# FILE GENERATED AUTOMATICALLY FROM TERRAFORM
# THIS FILE SHOULD NOT BE EDITED BY HAND
##############################################

name: Build and Deploy

on:
  push:
    branches:
      - main

jobs:
  build-and-deploy:
    runs-on: ubuntu-latest
    env:
      HUSKY_SKIP_HOOKS: 1
      HUSKY: 0
    steps:
      - name: Checkout 🛎️
        uses: actions/checkout@v3.0.2
      - name: Setup node ⚙️
        uses: actions/setup-node@v3.1.1
      - name: Install ⚙️️
        run: npm ci
      - name: Build 🔧
        run: npm run build
      - name: Deploy 🚀
        uses: peaceiris/actions-gh-pages@v3.8.0
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: .
          user_name: "github-actions[bot]"
          user_email: "github-actions[bot]@users.noreply.github.com"
          keep_files: true
          exclude_assets: ".github,node_modules,.gitignore,git"
