Skip to content

Update VS Code settings #5

Update VS Code settings

Update VS Code settings #5

Workflow file for this run

name: Update and/or publish
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
main:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout commit
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Prepare Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Update and/or publish versions
id: changesets
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm run release
commit: "Update package versions"
title: "Release: Update package versions"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}