Skip to content

Feat: add navigation #107

Feat: add navigation

Feat: add navigation #107

Workflow file for this run

name: Check PR
on: pull_request
jobs:
check-pr:
name: Check PR
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Check format
run: yarn check-format
- name: Test
run: yarn test