Skip to content

Support typescript-eslint 7.x #19

Support typescript-eslint 7.x

Support typescript-eslint 7.x #19

Workflow file for this run

name: Release
on:
push:
branches: [master]
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
CI: 'true'
jobs:
release:
# prevents this action from running on forks
if: github.repository == 'implydata/awesome-code-style'
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
cache: 'npm'
- run: npm install --prefer-offline --no-audit
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: npx changeset publish
createGithubReleases: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}