functionalscript 0.0.360 → 0.0.361

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.
@@ -0,0 +1,15 @@
1
+ name: Bun CI
2
+
3
+ on:
4
+ push:
5
+ pull_request:
6
+
7
+ jobs:
8
+ build:
9
+
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - run: curl https://bun.sh/install | bash
15
+ - run: /home/runner/.bun/bin/bun ./test.f.js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.360",
3
+ "version": "0.0.361",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "main.f.js",
6
6
  "scripts": {
@@ -1,24 +0,0 @@
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