Skip to content

chore: bump @types/node from 20.14.1 to 20.14.2 #307

chore: bump @types/node from 20.14.1 to 20.14.2

chore: bump @types/node from 20.14.1 to 20.14.2 #307

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# This makes action fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install Dependencies
run: npm ci
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
publish: npm run release
commit: 'chore: version packages'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}