Skip to content

🔗Improve Docs

🔗Improve Docs #145

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
general:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Lint
run: yarn lint