twenty/.github/workflows/ci-front.yaml

45 lines
1.3 KiB
YAML
Raw Normal View History

name: CI Front
2023-04-13 18:37:37 +03:00
on:
push:
branches:
- main
pull_request_target:
2023-04-13 18:37:37 +03:00
jobs:
front-test:
2023-08-17 22:23:39 +03:00
runs-on: ci-8-cores
env:
REACT_APP_SERVER_BASE_URL: http://localhost:3000
2023-04-13 18:37:37 +03:00
steps:
- uses: actions/checkout@v3
2023-07-05 10:24:46 +03:00
if: github.event_name == 'push'
with:
2023-07-05 01:04:05 +03:00
ref: ${{ github.head_ref || github.ref_name }}
2023-07-05 10:24:46 +03:00
- uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
ref: "refs/pull/${{ github.event.number }}/merge"
2023-04-13 18:37:37 +03:00
- name: Setup Node.js
uses: actions/setup-node@v3
2023-04-13 18:37:37 +03:00
with:
node-version: "18"
- name: Front / Write .env
run: |
cd front
2023-07-23 05:47:36 +03:00
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
2023-05-29 23:08:01 +03:00
run: |
cd front && yarn test