chore(deps): update dependency semver to ^7.7.4 #661
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
| # NOTE: This name appears in GitHub's Checks API and in workflow's status badge. | |
| name: ci-test | |
| # Trigger the workflow when: | |
| on: | |
| # A push occurs to one of the matched branches. | |
| push: | |
| branches: [master] | |
| # Or when a pull request event occurs for a pull request against one of the | |
| # matched branches. | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| test: | |
| # NOTE: This name appears in GitHub's Checks API. | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Set up Node.js 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| with: | |
| version: 10 | |
| run_install: false | |
| - name: Set workflow variables | |
| # Id is needed to access output in a next step. | |
| id: vars | |
| run: | | |
| echo "PNPM_CACHE_DIR=$(pnpm store path)" >> "$GITHUB_OUTPUT" | |
| - uses: actions/cache@v3 | |
| name: Setup pnpm cache | |
| with: | |
| path: ${{ steps.vars.outputs.PNPM_CACHE_DIR }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - name: Install | |
| run: pnpm install --frozen-lockfile --ignore-scripts | |
| # Subcall tests runs against dist files, so we need to build them first. | |
| - name: Build subcall lib | |
| run: pnpm --filter @oasisprotocol/rose-app-subcall build | |
| - name: Vitest | |
| run: pnpm test | |
| # E2E tests | |
| - name: Install Playwright Browsers | |
| run: pnpm --filter @oasisprotocol/rose-app-e2e install:deps | |
| - name: Run Playwright tests | |
| run: pnpm run test-e2e | |
| - uses: actions/upload-artifact@v4 | |
| if: ${{ !cancelled() }} | |
| with: | |
| name: playwright-report | |
| path: e2e/playwright-report/ | |
| retention-days: 7 |