Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: bun -v && bun install
- name: Lint
run: bun run lint