Skip to content

Merge pull request #94 from quilljs/readme-badge #96

Merge pull request #94 from quilljs/readme-badge

Merge pull request #94 from quilljs/readme-badge #96

Workflow file for this run

name: 'Run tests'
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run test:coverage
- run: npm run test:coverage:report
- name: Coveralls
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}