Skip to content

Update jest-related to v29.6.2 (#731) #659

Update jest-related to v29.6.2 (#731)

Update jest-related to v29.6.2 (#731) #659

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
# Fetch all git history for correct changelog commits
fetch-depth: 0
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm i -g npm@latest
- name: Install Dependencies
run: npm ci
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
publish: npm run release
version: npm run version
title: 'Publish Next Version'
commit: 'Publish Next Version'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}