Bump @microsoft/applicationinsights-web from 3.3.3 to 3.3.4 (#11888) #5939
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: Chromatic | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- .github/workflows/chromatic.yml | |
- packages/** | |
- apps/** | |
merge_group: | |
branches: [main] | |
pull_request: | |
paths: | |
- .github/workflows/chromatic.yml | |
- packages/** | |
- apps/** | |
jobs: | |
chromatic: | |
name: Chromatic | |
# Only run if not dependabot. | |
if: github.actor != 'dependabot[bot]' | |
runs-on: ubuntu-22.04 | |
env: | |
PNPM_VERSION: "9.12.3" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Chromatic requires full git history. | |
fetch-depth: 0 | |
- name: "Copy .env" | |
working-directory: "./apps/web" | |
run: | | |
cp .env.example .env | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: "./.nvmrc" | |
cache: pnpm | |
- name: "Install dependencies: workspace" | |
working-directory: ./ | |
run: | | |
pnpm install | |
- name: "Setup: all workspaces" | |
working-directory: ./ | |
run: | | |
pnpm codegen | |
pnpm intl-compile | |
- name: "Build: all workspaces" | |
working-directory: ./ | |
run: | | |
pnpm build | |
- name: "Publish Storybook: all" | |
uses: chromaui/action@v11.16.3 | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
# Auto-accept UI Tests on Chromatic platform. | |
# We use this setting because we're not relying on UI Tests at the | |
# moment, and want the GitHub status check in PRs (for "UI Tests") to | |
# display immediately as "passing". | |
autoAcceptChanges: true | |
workingDir: apps/web | |
onlyChanged: true |