Skip to content

1.1.3

1.1.3 #32

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test
- name: Publish to coveralls.io
uses: coverallsapp/[email protected]
with:
github-token: ${{ github.token }}