fix: correct typo in README and update Node.js version in CI workflow

- Fixed the spelling of "reminisces" in the README.md file.
- Updated Node.js version from 20 to 24 in the GitHub Actions workflow for lander pages.
- Changed yarn install command to use --non-interactive for smoother CI execution.
This commit is contained in:
Steven Enamakel
2026-03-19 10:52:16 -07:00
parent 97358a4ea6
commit 72242468fa
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -27,13 +27,14 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Install dependencies
run: cd lander && yarn install --frozen-lockfile
# run: cd lander && yarn install --frozen-lockfile
run: cd lander && yarn install --non-interactive
- name: Build (static export)
run: |