Update dependency eslint-config-prettier to v8.9.0 (#538) #386
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@master | |
with: | |
node-version: 16.x | |
- name: Install Dependencies | |
run: npm ci | |
- name: Create Release Pull Request or Publish to npm | |
uses: changesets/action@master | |
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 }} |