Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.

chore(deps): update node.js to v24 #1671

chore(deps): update node.js to v24

chore(deps): update node.js to v24 #1671

Workflow file for this run

name: CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ main ]
permissions:
id-token: write
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
release:
needs: [build]
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: 'yarn'
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn
npx semantic-release