Skip to content

support multirow-statement (#38) #78

support multirow-statement (#38)

support multirow-statement (#38) #78

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run build
npm run test:coverage
env:
CI: true
- name: Code Coverage Report
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: coverage/cobertura-coverage.xml
badge: false
fail_below_min: true
format: markdown
hide_branch_rate: false
hide_complexity: true
indicators: true
output: console
thresholds: '75 90'
- name: Upload coverage to Codecov
if: ${{ github.event_name == 'push' && matrix.node-version == '18.x'}}
uses: codecov/codecov-action@v3