Skip to content

CI: setup code coverage reporting #8

CI: setup code coverage reporting

CI: setup code coverage reporting #8

Workflow file for this run

name: Change
on:
push:
branches: ["master","develop"]
pull_request:
types: [opened, synchronize]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build XLucene Grammar
run: npm run prebuild
- name: Run lint
run: npm run lint
- name: Run format
run: npm run format:check
test:
runs-on: ubuntu-latest
needs: analyze
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Test Build
run: npm run build
- name: Run tests
run: npm test:coverage
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}