Skip to content

migrated to bun

migrated to bun #77

Workflow file for this run

name: Lint
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: yarn
shell: bash
- name: Check TypeScript
run: yarn tsc --noEmit
shell: bash
- name: Run ESLint
run: yarn lint
shell: bash