Skip to content

add test for visuallyIdenticalString #46

add test for visuallyIdenticalString

add test for visuallyIdenticalString #46

Workflow file for this run

name: Jest
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm ci
- name: Run tests
run: npx jest --coverage=true --coverageDirectory=coverage
- name: Commit files
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "Add changes" -a
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}