chore(deps-dev): bump @commitlint/config-conventional from 19.4.1 to 19.5.0 #4930
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [dev] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
e2e: | |
uses: ./.github/workflows/reusable-e2e.yml | |
npm-publish: | |
needs: e2e | |
if: ${{ github.event_name == 'push' }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: "https://registry.npmjs.org" | |
- name: Install | |
run: | | |
pnpm install --frozen-lockfile --prefer-offline | |
- name: Build | |
run: | | |
pnpm run build | |
- name: Publish Project | |
run: | | |
# Prevent `git commit error` when running `lerna version` | |
# It creates an ephemeral commit that will not be pushed to GitHub | |
git config --global user.email "[email protected]" | |
git config --global user.name "Your Name" | |
lerna version 0.0.0-ci.$(git rev-parse --short HEAD) --no-push --yes --exact | |
lerna publish from-git --dist-tag ci --yes | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |