@@ -67,52 +67,47 @@ jobs:
6767 if : ${{steps.skip-ci.outputs.RESULT != 'true'}}
6868 run : pnpm run test
6969
70- # ======== e2e ========
71- e2e-windows :
72- runs-on : windows-latest
73- strategy :
74- matrix :
75- node-version : [22.x]
76-
77- steps :
78- - name : Git config
79- shell : bash
80- run : |
81- git config --system core.longpaths true
82-
83- - name : Checkout
84- uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
85- with :
86- fetch-depth : 10
87-
88- - name : Install Pnpm
89- run : |
90- npm install -g corepack@latest --force
91- corepack enable
92-
93- - name : Check skip CI
94- shell : bash
95- run : echo "RESULT=$(node ./scripts/skipCI.js)" >> "$GITHUB_OUTPUT"
96- id : skip-ci
97-
98- - name : Log skip CI result
99- run : echo "${{steps.skip-ci.outputs.RESULT}}"
100-
101- - name : Setup Node.js ${{ matrix.node-version }}
102- if : ${{steps.skip-ci.outputs.RESULT != 'true'}}
103- uses : actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
104- with :
105- node-version : ${{ matrix.node-version }}
106- cache : ' pnpm'
107-
108- - name : Install Dependencies
109- if : ${{steps.skip-ci.outputs.RESULT != 'true'}}
110- run : pnpm install
111-
112- - name : Install Playwright Browsers
113- if : ${{steps.skip-ci.outputs.RESULT != 'true'}}
114- run : pnpm --dir e2e exec playwright install chromium
115-
116- - name : E2E Test
117- if : ${{steps.skip-ci.outputs.RESULT != 'true'}}
118- run : pnpm run e2e
70+ # # ======== e2e ========
71+ # e2e-windows:
72+ # runs-on: windows-latest
73+ # strategy:
74+ # matrix:
75+ # node-version: [18.x]
76+
77+ # # Steps represent a sequence of tasks that will be executed as part of the job
78+ # steps:
79+ # - name: Git config
80+ # shell: bash
81+ # run: |
82+ # git config --system core.longpaths true
83+
84+ # - name: Checkout
85+ # uses: actions/checkout@v3
86+ # with:
87+ # fetch-depth: 10
88+
89+ # - name: Install Pnpm
90+ # run: corepack enable
91+
92+ # - name: Check skip CI
93+ # shell: bash
94+ # run: echo "RESULT=$(node ./scripts/skipCI.js)" >> "$GITHUB_OUTPUT"
95+ # id: skip-ci
96+
97+ # - name: Log skip CI result
98+ # run: echo "${{steps.skip-ci.outputs.RESULT}}"
99+
100+ # - name: Setup Node.js ${{ matrix.node-version }}
101+ # if: ${{steps.skip-ci.outputs.RESULT != 'true'}}
102+ # uses: actions/setup-node@v3
103+ # with:
104+ # node-version: ${{ matrix.node-version }}
105+ # cache: 'pnpm'
106+
107+ # - name: Install Dependencies
108+ # if: ${{steps.skip-ci.outputs.RESULT != 'true'}}
109+ # run: pnpm install && cd ./e2e && npx playwright install
110+
111+ # - name: E2E Test
112+ # if: ${{steps.skip-ci.outputs.RESULT != 'true'}}
113+ # run: pnpm run e2e
0 commit comments