Skip to content

Zine answers (#61) #111

Zine answers (#61)

Zine answers (#61) #111

Workflow file for this run

name: Submit to coveralls
on:
push:
branches:
- main
workflow_dispatch:
jobs:
submit-coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- name: Test
run: npm run coverage
- name: Submit
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}