Skip to content

Commit fbd7c34

Browse files
authored
Basic github ci workflow for twenty website (#4869)
Creates a basic github workflow for this issue #4832
1 parent 1cbbb16 commit fbd7c34

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci-website.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI Website
2+
on:
3+
push:
4+
branches:
5+
- main
6+
paths:
7+
- 'package.json'
8+
- 'packages/twenty-website/**'
9+
pull_request:
10+
paths:
11+
- 'package.json'
12+
- 'packages/twenty-website/**'
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
website-build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Setup Node.js
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: "18"
26+
- name: Website / Install Dependencies
27+
run: yarn
28+
- name: Website / Build Website
29+
run: yarn nx build twenty-website

0 commit comments

Comments
 (0)