Skip to content

feat(ci): add GitHub Actions workflow for building and deploying the … #1

feat(ci): add GitHub Actions workflow for building and deploying the …

feat(ci): add GitHub Actions workflow for building and deploying the … #1

Workflow file for this run

name: Build Bundle and deploy
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: yarn install
- name: Build bundle
run: yarn build