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
2 changes: 1 addition & 1 deletion .github/workflows/check-file-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
- run: npm run setup
- name: Run Danger
run: npx danger ci --dangerfile scripts/dangerfile.ts
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v2
- name: Install Java
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v2
- name: Install Java
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v2
- name: Install Java
Expand Down
4 changes: 2 additions & 2 deletions docs/_markbind/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<variable name="icon_info">:fas-info-circle:</variable>
<variable name="icon_ticked">:far-check-square:</variable>

<variable name="node_version_number">18</variable>
<variable name="node_dev_version_number">18.20.4</variable>
<variable name="node_version_number">22</variable>
<variable name="node_dev_version_number">22.22.0</variable>
<variable name="node_version"><tooltip content="MarkBind aims to support up to the last maintenance lts release as outlined [here](https://nodejs.org/en/about/releases/)">v{{ node_version_number }}</tooltip></variable>
<variable name="node_dev_version"><tooltip content="MarkBind aims to support up to the last maintenance lts release as outlined [here](https://nodejs.org/en/about/releases/)">v{{ node_dev_version_number }}</tooltip></variable>
<variable name="graphviz_version_number">2.38</variable>
Expand Down
12 changes: 6 additions & 6 deletions docs/userGuide/deployingTheSite.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
- run: npm i -g markbind-cli
- run: markbind deploy --ci
```
Expand Down Expand Up @@ -201,7 +201,7 @@ Since May 2018, Travis CI has been [undergoing migration to `travis-ci.com`](htt
```yml
language: node_js
node_js:
- 18
- 22
install:
- npm i -g markbind-cli
script: markbind build
Expand Down Expand Up @@ -269,7 +269,7 @@ The `repo` value can be changed to your specific repository as desired.

```yml
environment:
nodejs_version: '18'
nodejs_version: '22'

branches:
only:
Expand Down Expand Up @@ -316,7 +316,7 @@ Commit and push `appveyor.yml` to your GitHub repository. Thereafter, AppVeyor C
steps:
- checkout
- node/install:
node-version: "18"
node-version: "22"
npm-version: "10"
install-yarn: false
- run: node --version
Expand Down Expand Up @@ -436,7 +436,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- name: Build MarkBind website
run: |
npm install -g markbind-cli
Expand Down Expand Up @@ -506,7 +506,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- name: Build PR preview url
id: pr-url
run: |
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build]
command = "npm run deploy:netlify"
environment = { NODE_VERSION = "18.20.4"}
environment = { NODE_VERSION = "22.22.0"}