Skip to content

Commit

Permalink
add gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskalmar committed Mar 11, 2024
1 parent 41dd473 commit eb92993
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on: [pull_request]

jobs:
build:
runs-on: ubuntu-latest
name: Mock Mirror

steps:
- name: Checkout
uses: actions/checkout@v4

- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install

- name: Lint
run: bun run lint

- name: Test
run: bun run test

- name: Build
run: bun run build

0 comments on commit eb92993

Please sign in to comment.