mirror of
https://github.com/vector-im/element-web.git
synced 2026-07-06 15:30:01 +00:00
1fb6b778e7
* Update pnpm to v11 * Handle breaking changes * Attach pnpm hash * Remove redundant packageManager fields * Make lint-staged happy * Lockfile pnpm itself too * Update pnpm/action-setup for better v11 compatibility * Specify types to make tsc happier * Fix permissions * Check ulimit * Specify minimumReleaseAgeExclude * Run desktop tests * Revert "Run desktop tests" This reverts commit911eb0ba2e. * Revert "Check ulimit" This reverts commitf09eb59d71. * Reapply "Check ulimit" This reverts commit83227c19ff. * Run desktop tests * Switch nodeLinker & remove app-builder-lib patch * Fix webpack.config.ts * Fix .stylelintrc.cjs * Fix `events` package * Makes types happier * Make knip happy * Fix hak build * Make jest happy * Make pnpm-link happy * Remove dead file * Run playwright tests * Fix linux hak permissions in ci * Test * Remove ulimit checks * Disable skip * Update nx * Tweak line endings * Update screenshot * Iterate * Webpack fallback `events` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
61 lines
2.0 KiB
YAML
61 lines
2.0 KiB
YAML
name: Shared Component Visual Tests
|
|
on:
|
|
pull_request: {}
|
|
merge_group:
|
|
types: [checks_requested]
|
|
push:
|
|
branches: [develop, master]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
|
|
cancel-in-progress: true
|
|
|
|
permissions: {} # No permissions required
|
|
|
|
jobs:
|
|
testStorybook:
|
|
name: "Run Visual Tests"
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
actions: read
|
|
issues: read
|
|
pull-requests: read
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
persist-credentials: false
|
|
repository: element-hq/element-web
|
|
|
|
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
|
|
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
|
|
with:
|
|
cache: "pnpm"
|
|
node-version: "lts/*"
|
|
|
|
- name: Install dependencies
|
|
working-directory: packages/shared-components
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Setup playwright
|
|
uses: ./.github/actions/setup-playwright
|
|
with:
|
|
write-cache: ${{ github.event_name != 'merge_group' }}
|
|
|
|
- name: Run Visual tests
|
|
working-directory: packages/shared-components
|
|
run: "pnpm test:storybook --run"
|
|
|
|
- name: Detect stale screenshots
|
|
run: |
|
|
if diff -rq __baselines__ __results__ | grep "^Only in __baselines__"; then
|
|
exit 1
|
|
fi
|
|
working-directory: packages/shared-components/__vis__/linux
|
|
|
|
- name: Upload received images & diffs
|
|
if: always()
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
|
|
with:
|
|
name: received-images
|
|
path: packages/shared-components/__vis__/linux
|