aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/bun.yml11
-rw-r--r--README.md9
2 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml
index e099794b8..05518308c 100644
--- a/.github/workflows/bun.yml
+++ b/.github/workflows/bun.yml
@@ -2,8 +2,19 @@ name: bun
on:
push:
branches: [main, bun-actions]
+ paths-ignore:
+ - "examples/**"
+ - "bench/**"
+ - "README.*"
+ - "LICENSE"
+ - ".vscode"
+ - ".devcontainer"
pull_request:
branches: [main]
+ paths-ignore:
+ - "examples/**"
+ - "bench/**"
+ - README.*
env:
REGISTRY: ghcr.io
diff --git a/README.md b/README.md
index 4f8427d76..9077bbbaa 100644
--- a/README.md
+++ b/README.md
@@ -15,10 +15,19 @@ All in one fast & easy-to-use tool. Instead of 1,000 node_modules for develo
## Install
+Native: (macOS x64 & arm64, Linux x64, WSL)
+
```sh
curl -fsSL https://bun.sh/install | bash
```
+Docker: (Linux x64)
+
+```sh
+docker pull jarredsumner/bun:edge
+docker run --rm --init --ulimit memlock=-1:-1 jarredsumner/bun:edge
+```
+
## Table of Contents
- [Install](#install)