Clean server post refactor to remove Hasura (#156)
* Clean BE post refactor to remove Hasura * Add server CI
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
name: continous-integration
|
||||
name: CI Front
|
||||
on:
|
||||
push:
|
||||
jobs:
|
||||
@ -13,12 +13,6 @@ jobs:
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "18"
|
||||
- name: 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: Cache node modules
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
@ -30,19 +24,25 @@ jobs:
|
||||
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||
${{ runner.os }}-build-
|
||||
${{ runner.os }}-
|
||||
- name: Install Dependencies
|
||||
- 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
|
||||
run: cd front && npm install
|
||||
- name: Install Playwright
|
||||
- name: Front / Install Playwright
|
||||
run: cd front && npx playwright install --with-deps
|
||||
- name: Run linter
|
||||
- name: Front / Run linter
|
||||
run: cd front && npm run lint
|
||||
- name: Build Storybook
|
||||
- name: Front / Build Storybook
|
||||
run: cd front && npm run build-storybook --quiet
|
||||
- name: Serve Storybook and run storybook tests
|
||||
- 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" \
|
||||
"npm run coverage"
|
||||
- name: run jest tests
|
||||
- name: Front / Run jest tests
|
||||
run: |
|
||||
cd front && npm run test
|
||||
cd front && npm run test
|
||||
30
.github/workflows/ci-server.yaml
vendored
Normal file
30
.github/workflows/ci-server.yaml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: CI Server
|
||||
on:
|
||||
push:
|
||||
jobs:
|
||||
server-test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "18"
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
path: ~/.npm
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||
${{ runner.os }}-build-
|
||||
${{ runner.os }}-
|
||||
- name: Server / Install Dependencies
|
||||
run: cd server && npm install
|
||||
- name: Server / Run linter
|
||||
run: cd server && npm run lint
|
||||
- name: Server / Run jest tests
|
||||
run: |
|
||||
cd server && npm run test
|
||||
Reference in New Issue
Block a user