Skip to content

Commit

Permalink
Merge pull request #1 from lemo-nade-room/develop
Browse files Browse the repository at this point in the history
Add homepage and GitHub Pages deployment
  • Loading branch information
lemo-nade-room authored Jun 9, 2024
2 parents e9ccedf + 1f4e30e commit 5ddcae3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Integration
on:
pull_request:

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run check
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run test:unit

0 comments on commit 5ddcae3

Please sign in to comment.