Skip to content

Merge pull request #4 from dominicbirch/dependabot/npm_and_yarn/word-… #25

Merge pull request #4 from dominicbirch/dependabot/npm_and_yarn/word-…

Merge pull request #4 from dominicbirch/dependabot/npm_and_yarn/word-… #25

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v3
with:
cache: npm
- run: npm ci
- run: npm test -- --ci --coverage --json --outputFile=test-results.json --testResultsProcessor="jest-junit"
- name: Code Coverage Summary Report
uses: irongut/CodeCoverageSummary@v1.2.0
with:
filename: coverage/cobertura-coverage.xml
badge: true
format: 'markdown'
output: 'both'