feat: support for cursor field during syncs config #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |