Skip to content

Commit

Permalink
Merge pull request #1 from knutkirkhorn/github-actions
Browse files Browse the repository at this point in the history
Add GitHub Actions
  • Loading branch information
chribjel authored Feb 22, 2024
2 parents e596ab6 + c52022f commit e6b80da
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run format:check
- run: bun run build
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ A unified email client that can use multiple providers. If one provider fails, i

## Thing to notice

* Does not support attachments yet.
* Only includes a few providers by default yet. (Please PR if you want to add more)
* API may change a lot until v1.0.0
- Does not support attachments yet.
- Only includes a few providers by default yet. (Please PR if you want to add more)
- API may change a lot until v1.0.0

## Example usage

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"types": "dist/index.d.ts",
"scripts": {
"build": "bunx tsc",
"prepublishOnly": "bun run build"
"prepublishOnly": "bun run build",
"format:check": "prettier --check ."
},
"files": [
"dist"
Expand Down

0 comments on commit e6b80da

Please sign in to comment.