Skip to content

feat: playground

feat: playground #24

Workflow file for this run

name: Build, check lint and format
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn run lint
- name: Format
run: npm run format:check
- name: Build
run: npm run build