Merge pull request #1411 from acelaya-forks/feature/node-22-10-ci

Downgrade to node 22.10 in CI to work around a bug in react-router 7
This commit is contained in:
Alejandro Celaya 2025-01-02 19:44:23 +01:00 committed by GitHub
commit 096d27f107
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -11,5 +11,5 @@ jobs:
ci:
uses: shlinkio/github-actions/.github/workflows/web-app-ci.yml@main
with:
node-version: 22.x
node-version: 22.10
publish-coverage: true

View file

@ -5,7 +5,7 @@ on:
jobs:
deploy:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
continue-on-error: true
steps:
- name: Checkout code
@ -16,7 +16,7 @@ jobs:
- name: Use node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
node-version: 22.10
- name: Build
run: |
npm ci && \

View file

@ -7,14 +7,14 @@ on:
jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
node-version: 22.10
- name: Generate release assets
run: npm ci && VERSION=${GITHUB_REF#refs/tags/v} npm run build:dist
- name: Publish release with assets