Test co64
and stsz
atoms
#80
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: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Test | |
run: | | |
npm ci | |
npm run lint | |
npm test | |
- name: Comment on PR with coverage percentages | |
if: | | |
matrix.node-version == '20.x' && | |
github.event_name == 'pull_request' | |
run: | | |
REPORT=$(<coverage/coverage-summary.json) | |
LINES=$(jq -r '.total.lines.pct' <<< "$REPORT") | |
STATEMENTS=$(jq -r '.total.statements.pct' <<< "$REPORT") | |
FUNCTIONS=$(jq -r '.total.functions.pct' <<< "$REPORT") | |
BRANCHES=$(jq -r '.total.branches.pct' <<< "$REPORT") | |
NEWLINE=$'\n' | |
BODY="## Test Coverage Summary Statistics${NEWLINE}* __Lines:__ ${LINES}%${NEWLINE}* __Statements:__ ${STATEMENTS}%${NEWLINE}* __Functions:__ ${FUNCTIONS}%${NEWLINE}* __Branches:__ ${BRANCHES}%" | |
gh pr comment ${{github.event.pull_request.number}} -b "${BODY}" | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update Coverage Badge | |
if: | | |
matrix.node-version == '20.x' && | |
github.ref == format('refs/heads/{0}', github.event.repository.default_branch) | |
uses: we-cli/coverage-badge-action@main |