Skip to content

Bump next from 14.1.4 to 14.2.10 #11

Bump next from 14.1.4 to 14.2.10

Bump next from 14.1.4 to 14.2.10 #11

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
matrix:
bun-version: [latest]
timeout-minutes: 20
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ matrix.bun-version }}
- name: Install dependencies
run: bun install
- name: Typecheck
run: bun run typecheck
- name: Lint
run: bun run lint
- name: Format check
run: bun run format:check