Update CI

This commit is contained in:
Alejandro Celaya
2026-05-12 19:37:09 +02:00
parent 268c1fb454
commit fe0379c00e
3 changed files with 7 additions and 7 deletions

View File

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

View File

@@ -9,14 +9,14 @@ jobs:
continue-on-error: true continue-on-error: true
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
repository: ${{ github.event.pull_request.head.repo.full_name }} repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }} ref: ${{ github.event.pull_request.head.ref }}
- name: Use node.js - name: Use node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v6
with: with:
node-version: 22.10 node-version: 24.14
- name: Build - name: Build
run: | run: |
npm ci && \ npm ci && \

View File

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