Skip to content

Update readme.md with general template #24

Update readme.md with general template

Update readme.md with general template #24

Workflow file for this run

name: Tests
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run Lint
run: yarn lint
- name: Run Tests
run: yarn test