-
-
Notifications
You must be signed in to change notification settings - Fork 58
ci: add windows test #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
852b0d1
chore: update
SoonIter 3f7b451
ci: add windows test
SoonIter 79d8963
chore: update
SoonIter 2d8b15a
chore: update
SoonIter b3db768
chore: update
SoonIter c9f7f9b
chore: update 0.0.6
SoonIter 95c8237
chore: update
SoonIter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,120 @@ | ||
| name: Test (Windows) | ||
|
|
||
| # Controls when the action will run. | ||
| on: | ||
| # Triggers the workflow on pull request events but only for the main branch | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| push: | ||
| branches: [main] | ||
|
|
||
| merge_group: | ||
|
|
||
| # Allows you to run this workflow manually from the Actions tab | ||
| workflow_dispatch: | ||
|
|
||
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
| jobs: | ||
| # ======== ut ======== | ||
| ut-windows: | ||
| runs-on: windows-latest | ||
| strategy: | ||
| matrix: | ||
| node-version: [18.x] | ||
|
|
||
| # Steps represent a sequence of tasks that will be executed as part of the job | ||
| steps: | ||
| - name: Git config | ||
| shell: bash | ||
| run: | | ||
| git config --system core.longpaths true | ||
|
|
||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 10 | ||
|
|
||
| - name: Install Pnpm | ||
| run: corepack enable | ||
|
|
||
| - uses: dorny/paths-filter@v3 | ||
| id: changes | ||
| with: | ||
| predicate-quantifier: 'every' | ||
| filters: | | ||
| changed: | ||
| - "!**/*.md" | ||
| - "!**/*.mdx" | ||
| - "!**/_meta.json" | ||
| - "!**/dictionary.txt" | ||
|
|
||
| - name: Setup Node.js ${{ matrix.node-version }} | ||
| if: steps.changes.outputs.changed == 'true' | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| cache: 'pnpm' | ||
|
|
||
| - name: Install Dependencies | ||
| if: steps.changes.outputs.changed == 'true' | ||
| run: pnpm install | ||
|
|
||
| - name: Unit Test | ||
| if: steps.changes.outputs.changed == 'true' | ||
| run: pnpm run test:unit | ||
|
|
||
| # # ======== e2e ======== | ||
| e2e-windows: | ||
| runs-on: windows-latest | ||
| strategy: | ||
| matrix: | ||
| node-version: [18.x] | ||
|
|
||
| # Steps represent a sequence of tasks that will be executed as part of the job | ||
| steps: | ||
| - name: Git config | ||
| shell: bash | ||
| run: | | ||
| git config --system core.longpaths true | ||
|
|
||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 10 | ||
|
|
||
| - name: Install Pnpm | ||
| run: corepack enable | ||
|
|
||
| - uses: dorny/paths-filter@v3 | ||
| id: changes | ||
| with: | ||
| predicate-quantifier: 'every' | ||
| filters: | | ||
| changed: | ||
| - "!**/*.md" | ||
| - "!**/*.mdx" | ||
| - "!**/_meta.json" | ||
| - "!**/dictionary.txt" | ||
|
|
||
| - name: Setup Node.js ${{ matrix.node-version }} | ||
| if: steps.changes.outputs.changed == 'true' | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| cache: 'pnpm' | ||
|
|
||
| - name: Install Dependencies | ||
| if: steps.changes.outputs.changed == 'true' | ||
| run: pnpm install && cd ./e2e && npx playwright install | ||
|
|
||
| - name: E2E Test | ||
| if: steps.changes.outputs.changed == 'true' | ||
| run: | | ||
| pnpm run test:artifact | ||
| pnpm run test:e2e | ||
|
|
||
| - name: Examples Test | ||
| if: steps.changes.outputs.changed == 'true' | ||
| run: | | ||
| pnpm run build:examples |
This file contains hidden or 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 file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,23 +20,23 @@ export { Foo }; | |
|
|
||
| exports[`should downgrade class private method with output.syntax config 1`] = ` | ||
| " | ||
| ;// CONCATENATED MODULE: ../../../../node_modules/.pnpm/@[email protected]/node_modules/@swc/helpers/esm/_class_private_method_get.js | ||
| ;// CONCATENATED MODULE: ../../../../node_modules/<PNPM_INNER>/@swc/helpers/esm/_class_private_method_get.js | ||
| function _class_private_method_get(receiver, privateSet, fn) { | ||
| if (!privateSet.has(receiver)) throw new TypeError("attempted to get private field on non-instance"); | ||
| if (!privateSet.has(receiver)) throw new TypeError(\\"attempted to get private field on non-instance\\"); | ||
|
|
||
| return fn; | ||
| } | ||
|
|
||
|
|
||
| ;// CONCATENATED MODULE: ../../../../node_modules/.pnpm/@[email protected]/node_modules/@swc/helpers/esm/_check_private_redeclaration.js | ||
| ;// CONCATENATED MODULE: ../../../../node_modules/<PNPM_INNER>/@swc/helpers/esm/_check_private_redeclaration.js | ||
| function _check_private_redeclaration(obj, privateCollection) { | ||
| if (privateCollection.has(obj)) { | ||
| throw new TypeError("Cannot initialize the same private elements twice on an object"); | ||
| throw new TypeError(\\"Cannot initialize the same private elements twice on an object\\"); | ||
| } | ||
| } | ||
|
|
||
|
|
||
| ;// CONCATENATED MODULE: ../../../../node_modules/.pnpm/@[email protected]/node_modules/@swc/helpers/esm/_class_private_method_init.js | ||
| ;// CONCATENATED MODULE: ../../../../node_modules/<PNPM_INNER>/@swc/helpers/esm/_class_private_method_init.js | ||
|
|
||
|
|
||
| function _class_private_method_init(obj, privateSet) { | ||
|
|
||
This file contains hidden or 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 file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,16 @@ | ||
| import path from 'node:path'; | ||
| import process from 'node:process'; | ||
| import { beforeEach } from 'vitest'; | ||
| import { createSnapshotSerializer } from 'path-serializer'; | ||
| import { beforeEach, expect } from 'vitest'; | ||
|
|
||
| beforeEach(() => { | ||
| // since our NODE_ENV injection logic is via cli, we need to | ||
| // delete "test" NODE_ENV to avoid affecting the default build config | ||
| delete process.env.NODE_ENV; | ||
| }); | ||
|
|
||
| expect.addSnapshotSerializer( | ||
| createSnapshotSerializer({ | ||
| workspace: path.join(__dirname, '..'), | ||
| }), | ||
| ); |
This file contains hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.