Commit c8867c5
authored
ci: add GitHub Actions workflow and simplify project structure (#1)
* ci: add GitHub Actions workflow and simplify project structure
* ci: expand test matrix with multiple OS and Node versions
* ci: add build step to CI workflow before type checking
* ci: optimize CI workflow with caching and reduced test matrix
* ci: improve workflow with separate lint job and dependency review
* ci: update release process and add build step to workflow
* chore: upgrade tsx from 3.14.0 to 4.19.4
* test: update CSS property order in rspack build tests
* ci: update E2E test command in CI workflow
* test: remove Cypress in favor of Playwright for E2E testing
* ci: optimize memory allocation and environment variable settings
* chore: update lock
* test: enhance e2e test coverage and update test configuration
* ci: add Playwright Chromium installation step to workflow
* test: simplify user test by removing custom API mocking
* refactor: replace shared lodash with direct dependency in test-utils
* refactor: remove default directory filters from turbo command
* fix: properly escape special characters in CSS test snapshots
* ci: comment out dependency review job until project is public
* ci: run build-and-test job in parallel with lint
* style: improve code formatting and replace lodash with shared dependency
* fix: update paths and regex in CSS test snapshots
* style: update snapshot paths and comment out unused variables in test-utils
* fix: uncomment workspace path matcher in test-utils snapshot serializer
* fix: replace pathe with node:path in vitest setup script
* fix: escape special characters in CSS test snapshots
* refactor: update path imports and add winPath matcher in test-utils and vitest setup
* fix: add node:path import in vitest setup script
* fix: correct regex patterns in CSS test snapshots
* chore: update Node.js version and vitest dependency in CI configuration
* fix: escape special characters in CSS test snapshots
* feat: configure snapshot serializer with path normalization features
* refactor: standardize path references in test snapshots
* ci: skip unit tests on Windows and update snapshot serializer
* refactor: replace ROOT with WORKSPACE in test snapshots1 parent 5a11f1c commit c8867c5
File tree
34 files changed
+778
-1198
lines changed- .github/workflows
- e2e/max
- components/Loading
- cypress
- e2e
- fixtures
- support
- pages
- tests
- examples/ant-pro
- packages
- bundler-rspack/src
- preset-bundler/src/features/configPlugins
- scripts
- kmi-scripts
- bin
- src
- test-utils/src
34 files changed
+778
-1198
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| |||
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | | - | |
12 | | - | |
| 11 | + | |
| 12 | + | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
0 commit comments