Skip to content
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
},
{
"run": "npm install -g functionalscript@0.43.1"
"run": "npm install -g functionalscript@0.44.0"
},
{
"uses": "actions/checkout@v7.0.1"
Expand Down Expand Up @@ -81,7 +81,7 @@
}
},
{
"run": "npm install -g functionalscript@0.43.1"
"run": "npm install -g functionalscript@0.44.0"
},
{
"uses": "actions/checkout@v7.0.1"
Expand Down Expand Up @@ -122,7 +122,7 @@
}
},
{
"run": "npm install -g functionalscript@0.43.1"
"run": "npm install -g functionalscript@0.44.0"
},
{
"uses": "actions/checkout@v7.0.1"
Expand Down Expand Up @@ -163,7 +163,7 @@
}
},
{
"run": "npm install -g functionalscript@0.43.1"
"run": "npm install -g functionalscript@0.44.0"
},
{
"uses": "actions/checkout@v7.0.1"
Expand Down Expand Up @@ -205,7 +205,7 @@
}
},
{
"run": "npm install -g functionalscript@0.43.1"
"run": "npm install -g functionalscript@0.44.0"
},
{
"uses": "actions/checkout@v7.0.1"
Expand Down Expand Up @@ -258,7 +258,7 @@
}
},
{
"run": "npm install -g functionalscript@0.43.1"
"run": "npm install -g functionalscript@0.44.0"
},
{
"uses": "actions/checkout@v7.0.1"
Expand Down Expand Up @@ -389,13 +389,13 @@
}
},
{
"run": "deno install -g -A --minimum-dependency-age=0 npm:functionalscript@0.43.1"
"run": "deno install -g -A --minimum-dependency-age=0 npm:functionalscript@0.44.0"
},
{
"uses": "actions/checkout@v7.0.1"
},
{
"run": "deno run -A --minimum-dependency-age=0 npm:functionalscript@0.43.1 test"
"run": "deno run -A --minimum-dependency-age=0 npm:functionalscript@0.44.0 test"
},
{
"run": "deno install --frozen"
Expand All @@ -415,7 +415,7 @@
}
},
{
"run": "bun install -g functionalscript@0.43.1"
"run": "bun install -g functionalscript@0.44.0"
},
{
"uses": "actions/checkout@v7.0.1"
Expand All @@ -424,7 +424,7 @@
"run": "bun install --frozen-lockfile"
},
{
"run": "bunx functionalscript@0.43.1 test"
"run": "bunx functionalscript@0.44.0 test"
},
{
"run": "bun test --coverage"
Expand All @@ -441,7 +441,7 @@
}
},
{
"run": "npm install -g functionalscript@0.43.1"
"run": "npm install -g functionalscript@0.44.0"
},
{
"uses": "actions/checkout@v7.0.1"
Expand Down
2 changes: 1 addition & 1 deletion fjs/ci/config/module.f.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const images = /** @type {const} */({
// published FunctionalScript release; do not tie it to package.json's current
// in-repo version.
// https://www.npmjs.com/package/functionalscript
export const functionalscript = /** @type {const} */ '0.43.1'
export const functionalscript = /** @type {const} */ '0.44.0'

// https://bun.sh/
export const bun = '1.3.14'
Expand Down
Loading