Basic github ci workflow for twenty website (#4869)

Creates a basic github workflow for this issue #4832
This commit is contained in:
Anoop P 2024-04-08 16:17:52 +05:30 committed by GitHub
parent 1cbbb1600c
commit fbd7c34478
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

29
.github/workflows/ci-website.yaml vendored Normal file
View File

@ -0,0 +1,29 @@
name: CI Website
on:
push:
branches:
- main
paths:
- 'package.json'
- 'packages/twenty-website/**'
pull_request:
paths:
- 'package.json'
- 'packages/twenty-website/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
website-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Website / Install Dependencies
run: yarn
- name: Website / Build Website
run: yarn nx build twenty-website