Skip to content

Merge pull request #7 from barclayd/deploy/github_actions #4

Merge pull request #7 from barclayd/deploy/github_actions

Merge pull request #7 from barclayd/deploy/github_actions #4

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
ci:
name: ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Lint
run: bun lint
- name: Types
run: bun types
- name: Test
run: bun test