Skip to content

Recursively check for epsilon closure states (#21) #87

Recursively check for epsilon closure states (#21)

Recursively check for epsilon closure states (#21) #87

Workflow file for this run

# This workflow will do a clean install of dependencies and lint and test the project
name: Lint and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test