forked from twentyhq/twenty
-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (46 loc) · 1.45 KB
/
ci-front.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CI Front
on:
push:
branches:
- main
pull_request_target:
jobs:
front-test:
runs-on: ubuntu-latest
env:
REACT_APP_API_URL: http://localhost:3000/graphql
REACT_APP_AUTH_URL: http://localhost:3000/auth
REACT_APP_FILES_URL: http://localhost:3000/files
steps:
- uses: actions/checkout@v3
if: github.event_name == 'push'
with:
ref: ${{ github.head_ref || github.ref_name }}
- uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
ref: "refs/pull/${{ github.event.number }}/merge"
- 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