Skip to content

chore: update core chakra config (#98) #76

chore: update core chakra config (#98)

chore: update core chakra config (#98) #76

Workflow file for this run

name: frontend-ci
on:
push:
branches: [main]
paths:
- "ui/**"
pull_request:
paths:
- "ui/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install dependencies
run: npm install
working-directory: ./ui
- name: Run tests and collect coverage
run: npm test -- --coverage
working-directory: ./ui
- name: Upload coverage to Code Climate
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
if [ -f coverage/lcov.info ]; then
./cc-test-reporter after-build --exit-code $? --coverage-input-type lcov
else
echo "Coverage report not found."
fi
working-directory: ./ui