2023-05-29 23:42:24 +03:00
|
|
|
name: CI Front
|
2023-04-13 18:37:37 +03:00
|
|
|
on:
|
|
|
|
push:
|
2023-06-27 18:55:07 +03:00
|
|
|
branches:
|
|
|
|
- main
|
2023-06-26 20:21:51 +03:00
|
|
|
pull_request_target:
|
2023-04-13 18:37:37 +03:00
|
|
|
jobs:
|
|
|
|
front-test:
|
|
|
|
runs-on: ubuntu-latest
|
2023-05-29 12:02:38 +03:00
|
|
|
env:
|
|
|
|
REACT_APP_API_URL: http://127.0.0.1:3000/graphql
|
|
|
|
REACT_APP_AUTH_URL: http://127.0.0.1:3000/auth
|
2023-04-13 18:37:37 +03:00
|
|
|
steps:
|
2023-05-29 12:02:38 +03:00
|
|
|
- uses: actions/checkout@v3
|
2023-07-05 10:24:46 +03:00
|
|
|
if: github.event_name == 'push'
|
2023-06-30 11:35:59 +03:00
|
|
|
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
|
2023-05-29 12:02:38 +03:00
|
|
|
uses: actions/setup-node@v3
|
2023-04-13 18:37:37 +03:00
|
|
|
with:
|
|
|
|
node-version: "18"
|
2023-05-29 23:42:24 +03:00
|
|
|
- name: Front / Write .env
|
|
|
|
run: |
|
|
|
|
cd front
|
|
|
|
touch .env
|
|
|
|
echo "REACT_APP_API_URL: $REACT_APP_API_URL" >> .env
|
|
|
|
echo "REACT_APP_AUTH_URL: $REACT_APP_AUTH_URL" >> .env
|
|
|
|
- name: Front / Install Dependencies
|
2023-06-14 17:56:29 +03:00
|
|
|
run: cd front && yarn
|
2023-05-29 23:42:24 +03:00
|
|
|
- name: Front / Install Playwright
|
2023-05-29 12:02:38 +03:00
|
|
|
run: cd front && npx playwright install --with-deps
|
2023-05-29 23:42:24 +03:00
|
|
|
- name: Front / Run linter
|
2023-06-14 17:56:29 +03:00
|
|
|
run: cd front && yarn lint
|
2023-05-29 23:42:24 +03:00
|
|
|
- name: Front / Build Storybook
|
2023-06-14 17:56:29 +03:00
|
|
|
run: cd front && yarn build-storybook --quiet
|
2023-05-29 23:42:24 +03:00
|
|
|
- name: Front / Run storybook tests
|
2023-05-29 12:02:38 +03:00
|
|
|
run: |
|
|
|
|
cd front && npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
|
|
|
|
"npx http-server storybook-static --silent --port 6006" \
|
2023-06-30 00:06:15 +03:00
|
|
|
"yarn coverage-storybook"
|
2023-05-29 23:42:24 +03:00
|
|
|
- name: Front / Run jest tests
|
2023-05-29 23:08:01 +03:00
|
|
|
run: |
|
2023-06-14 17:56:29 +03:00
|
|
|
cd front && yarn test
|