Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GitHub Actions #1

Merged
merged 4 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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