Skip to content

ci: add code coverage checking script #164

ci: add code coverage checking script

ci: add code coverage checking script #164

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches: [master]
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup environment
uses: ./.github/actions/setup
- name: Run formatter
run: yarn format:check
- name: Run linter
run: yarn lint
- name: Run unit tests
run: yarn test
scan:
if: github.event_name == 'pull_request'
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1