Skip to content

Implemented SelectionDrawer component #114

Implemented SelectionDrawer component

Implemented SelectionDrawer component #114

Workflow file for this run

name: PR Workflow
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- develop
- main
jobs:
check:
timeout-minutes: 30
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: setup node.js environment
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: install
run: npm ci
- name: typecheck
run: npm run typecheck
- name: lint
run: npm run lint