Skip to content

Update ci-frontend.yml #179

Update ci-frontend.yml

Update ci-frontend.yml #179

Workflow file for this run

name: frontend-integration
on:
push:
branches:
- sofa-tmp
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./frontend
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check Caching
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: pwd
run: pwd
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.15.0'
- name: Install Dependencies
run: npm install --frozen-lockfile
# run: npm i
- name: Create .env file
run: |
echo "BASE_URL=${{ secrets.BASE_URL }}" > .env
echo "REACT_APP_GOOGLE_ANALYTICS=${{ secrets.REACT_APP_GOOGLE_ANALYTICS }}" >> .env
echo "SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}" >> .env
echo "SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env
- name: Clear cache
run: npx jest --clearCache
- name: Run tests
# run: npm test -- --config jest.config.json
run: npm run test
- name: Run linter
run: npm run lint