Skip to content

bump pnpm to 8.x and node to 20.x versions in workflows #16

bump pnpm to 8.x and node to 20.x versions in workflows

bump pnpm to 8.x and node to 20.x versions in workflows #16

Workflow file for this run

name: Create Release PR
on:
push:
branches:
- "main"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.x
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}