fix(deps): update all non-major dependencies #2171
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
| name: E2E Tests | |
| on: | |
| push: | |
| branches: | |
| - feat_v3.x | |
| pull_request: | |
| branches: | |
| - feat_v3.x | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| run: npm i -g pnpm@10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run E2E Tests for H5 | |
| env: | |
| CI: true | |
| run: pnpm cypress install --force && pnpm e2e:run:h5 | |
| - name: Run E2E Tests for Taro | |
| env: | |
| CI: true | |
| run: pnpm cypress install --force && pnpm e2e:run:taro |