Skip to content

updated index page #118

updated index page

updated index page #118

Workflow file for this run

name: 'lint'
on:
push # every push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Cloning repo
uses: actions/checkout@v2
with:
fetch-depth: 0 # speeds up the checkout
- name: Set up pnpm (package manager)
uses: pnpm/[email protected]
- name: Install dependencies
run: pnpm install
- name: Run linter
run: pnpm lint