Skip to content

Commit

Permalink
Upgrade to Node 18. (#62)
Browse files Browse the repository at this point in the history
* Local tests working

* Start nightwatch upgrade.

* Fix errors in build-docs script.

* Fix logo not loading.

* Update web-opds-client dependency version.

* Back off nightwatch upgrade.

* Update github actions to versions that use node > 12.
  • Loading branch information
ray-lee authored Jan 18, 2023
1 parent 704202c commit a644aba
Show file tree
Hide file tree
Showing 20 changed files with 15,791 additions and 16,227 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Node.js 💻
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 12

Expand All @@ -27,7 +27,7 @@ jobs:
run: npm run build-docs

- name: Deploy docs to GitHub pages 🚀
uses: JamesIves/github-pages-deploy-action@releases/v3
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
BRANCH: gh-pages
FOLDER: docs
branch: gh-pages
folder: docs
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install Node.js 💻
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 12
registry-url: https://registry.npmjs.org/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ jobs:

steps:
- name: Checkout repo to sync
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: code

- name: Checkout CI scripts
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: 'ThePalaceProject/ci-scripts'
path: ci

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.8

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Node.js 💻
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 12

Expand Down
6 changes: 3 additions & 3 deletions nightwatch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

"selenium": {
"start_process": true,
"server_path": "./node_modules/selenium-standalone/.selenium/selenium-server/3.141.5-server.jar",
"server_path": "./node_modules/selenium-standalone/.selenium/selenium-server/3.141.59-server.jar",
"log_path": "",
"host": "127.0.0.1",
"port": 4444,
"cli_args": {
"webdriver.chrome.driver": "./node_modules/selenium-standalone/.selenium/chromedriver/2.43-x64-chromedriver",
"webdriver.gecko.driver": "./node_modules/selenium-standalone/.selenium/geckodriver/0.23.0-x64-geckodriver",
"webdriver.chrome.driver": "./node_modules/selenium-standalone/.selenium/chromedriver/latest-x64-chromedriver",
"webdriver.gecko.driver": "./node_modules/selenium-standalone/.selenium/geckodriver/latest-x64-geckodriver",
"webdriver.ie.driver": ""
}
},
Expand Down
Loading

0 comments on commit a644aba

Please sign in to comment.