chore: update dependencies and lock file #25420
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-Pipeline | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'develop' | |
- 'main' | |
- 'release/*' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
# - uses: pnpm/action-setup@v4 | |
# with: | |
# run_install: false | |
# version: 8 | |
# - uses: actions/setup-node@v4 | |
# with: | |
# cache: pnpm | |
# node-version: 20 | |
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
# cache: pnpm | |
node-version: 20 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
id: pnpm-install | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store | |
restore-keys: | | |
${{ runner.os }}-pnpm-store | |
- name: Install | |
run: pnpm i --no-frozen-lockfile | |
- name: Unused | |
run: pnpm -r unused | |
- name: Depcheck | |
run: pnpm -r depcheck | |
- name: Format | |
run: pnpm -r format | |
- name: Build | |
run: pnpm -r build | |
- name: Lint | |
run: pnpm -r lint | |
- name: Test | |
run: pnpm -r --workspace-concurrency=1 test # https://pnpm.io/configuring | |
- name: Install Playwright Browsers | |
run: pnpm --filter @public-ui/components exec playwright install --with-deps | |
- name: Components E2E Test | |
run: pnpm --filter @public-ui/components e2e | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
name: Upload test reports | |
with: | |
name: reports | |
path: | | |
packages/themes/**/test-results/**/*.png | |
packages/test-tag-name-transformer/test-results/**/*.png | |
packages/components/playwright-report/ | |
!**/node_modules |