build(deps-dev): bump chromatic from 11.7.1 to 11.12.0 #3559
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
HUSKY: 0 | |
NPM_AUTH: ${{secrets.NPM_AUTH}} | |
GH_TOKEN: ${{secrets.GH_TOKEN}} | |
strategy: | |
matrix: | |
node-version: [20.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
- run: yarn config set registry https://registry.npmjs.org | |
- run: yarn | |
- run: yarn verify | |
- run: git checkout main | |
- run: git config --global user.email '[email protected]' | |
- run: git config --global user.name 'Jarvis1010' | |
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_AUTH}}" > ~/.npmrc | |
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
run: npm whoami | |
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
run: npx lerna publish --conventional-commits --yes |