twenty/.github/workflows/ci-front.yaml
2023-09-15 11:25:42 -07:00

38 lines
1.1 KiB
YAML

name: CI Front
on:
push:
branches:
- main
pull_request:
jobs:
front-test:
runs-on: ci-8-cores
env:
REACT_APP_SERVER_BASE_URL: http://localhost:3000
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Front / Write .env
run: |
cd front
cp .env.example .env
- name: Front / Install Dependencies
run: cd front && yarn
- name: Front / Install Playwright
run: cd front && npx playwright install --with-deps
- name: Front / Run linter
run: cd front && yarn lint
- name: Front / Build Storybook
run: cd front && yarn storybook:build --quiet
- name: Front / Run storybook tests
run: |
cd front && npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"npx http-server storybook-static --silent --port 6006" \
"yarn storybook:coverage"
- name: Front / Run jest tests
run: |
cd front && yarn test