@@ -20,30 +20,34 @@ jobs:
2020 node-version : [20]
2121
2222 steps :
23- - name : Checkout
24- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
25- with :
26- fetch-depth : 10
27- ref : ${{ inputs.ref || 'main' }}
28-
29- - name : Install pnpm
30- run : |
31- npm install -g corepack@latest --force
32- corepack enable
33-
34- - name : Setup Node.js ${{ matrix.node-version }}
35- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
36- with :
37- node-version : ${{ matrix.node-version }}
38- cache : ' pnpm'
39-
40- - name : Install Dependencies
41- run : pnpm install && cd ./tests && pnpm playwright install chromium
42-
43- # only run benchmark in Ubuntu
44- - name : Benchmarks (Vitest)
45- uses : CodSpeedHQ/action@0010eb0ca6e89b80c88e8edaaa07cfe5f3e6664d # v3
46- with :
47- run : pnpm run test:benchmark
48- # token retrieved from the CodSpeed app at the previous step
49- token : ${{ secrets.CODSPEED_TOKEN }}
23+ # just a dummy step
24+ - name : Dummy Step
25+ run : echo "TODO:\ Support benchmark in Rstest, this job is only a placeholder for the time being."
26+
27+ # - name: Checkout
28+ # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
29+ # with:
30+ # fetch-depth: 10
31+ # ref: ${{ inputs.ref || 'main' }}
32+
33+ # - name: Install pnpm
34+ # run: |
35+ # npm install -g corepack@latest --force
36+ # corepack enable
37+
38+ # - name: Setup Node.js ${{ matrix.node-version }}
39+ # uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
40+ # with:
41+ # node-version: ${{ matrix.node-version }}
42+ # cache: 'pnpm'
43+
44+ # - name: Install Dependencies
45+ # run: pnpm install && cd ./tests && pnpm playwright install chromium
46+
47+ # # only run benchmark in Ubuntu
48+ # - name: Benchmarks (Rstest)
49+ # uses: CodSpeedHQ/action@0010eb0ca6e89b80c88e8edaaa07cfe5f3e6664d # v3
50+ # with:
51+ # run: pnpm run test:benchmark
52+ # # token retrieved from the CodSpeed app at the previous step
53+ # token: ${{ secrets.CODSPEED_TOKEN }}
0 commit comments