Skip to content

Update dependency acorn to ^8.12.1 (#772) #696

Update dependency acorn to ^8.12.1 (#772)

Update dependency acorn to ^8.12.1 (#772) #696

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 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'npm'
- 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 }}