Skip to content

style(storybook): fix linting issues #12

style(storybook): fix linting issues

style(storybook): fix linting issues #12

Workflow file for this run

name: release
on:
push:
branches:
- develop
jobs:
start:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: develop
# token: ${{ secrets.GH_TOKEN }}
- name: Configure git identity
run: |
git config --global user.name "Maven Engineering"
git config --global user.email "[email protected]"
- name: Fetch tags
run: git fetch --prune --unshallow --tags --force
- name: Setup node
uses: ./.github/actions/setup
with:
node-version-file: '.nvmrc'
- name: Generate release notes
id: release-notes-preview
run: |
# Trick semantic-release into thinking we're not in a CI environment
unset GITHUB_ACTIONS
unset GITHUB_EVENT_NAME
pnpm semantic-release --dry-run --no-ci --branches develop