Skip to content

chore: add flow types #79

chore: add flow types

chore: add flow types #79

Workflow file for this run

name: Jest & Standard
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: Run standard
run: npm run standard
- name: Run Jest
run: npm test