Skip to content

fix typo

fix typo #28

Workflow file for this run

name: 'Build, run and test'
on:
push:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node JS
uses: actions/setup-node@v4
with:
node-version: 20.11
- name: Install dependencies
run: yarn
- name: Test
run: yarn test
lintandcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node JS
uses: actions/setup-node@v4
with:
node-version: 20.11
- name: Install dependencies
run: yarn
- name: Prettier check
run: yarn prettier:check
- name: ESLint lint
run: yarn lint