Skip to content

Commit c22e9ed

Browse files
committed
Adding a GitHub action for site build
1 parent e0e068a commit c22e9ed

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Site Build
3+
on:
4+
push:
5+
branches: [ deployment ]
6+
7+
jobs:
8+
site-build:
9+
runs-on: ubuntu-latest
10+
container: node:22-alpine
11+
steps:
12+
- name: Check out repository code
13+
uses: actions/checkout@v4
14+
- name: Install Yarn Dependencies
15+
run: cd apps/front && yarn install
16+
- name: Build Site
17+
run: cd apps/front && npm run build:worker

0 commit comments

Comments
 (0)