Skip to content

chore: update GitHub Actions to use Node.js 24 and latest action vers… #53

chore: update GitHub Actions to use Node.js 24 and latest action vers…

chore: update GitHub Actions to use Node.js 24 and latest action vers… #53

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
if: github.repository == 'vtbag/turn-signal'
permissions:
contents: write
pull-requests: write
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
- run: npm ci
- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}