functionalscript 0.0.359 → 0.0.360
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/bun2.yml +24 -0
- package/package.json +1 -1
- package/.github/workflows/bun.yml +0 -15
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: Bun CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
# export BUN_INSTALL="/Users/sergeyshandar/.bun"
|
|
8
|
+
# export PATH="$BUN_INSTALL/bin:$PATH"
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build:
|
|
12
|
+
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
|
|
15
|
+
env:
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v2
|
|
18
|
+
- run: curl https://bun.sh/install | bash
|
|
19
|
+
# - env:
|
|
20
|
+
# BUN_INSTALL: /Users/sergeyshandar/.bun
|
|
21
|
+
# - env:
|
|
22
|
+
# PATH: $BUN_INSTALL/bin:$PATH
|
|
23
|
+
- run: bun install
|
|
24
|
+
- run: bun test
|
package/package.json
CHANGED