Added an explicit declaration of the Rpc.__DURABLE_OBJECT_BRAND property #1511
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: Pull Request | |
| on: pull_request | |
| jobs: | |
| check: | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| os: [ | |
| ubuntu-24.04 | |
| # windows-latest, | |
| # macos-latest, | |
| ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: "npm" | |
| - name: Get Playwright version | |
| id: playwright-version | |
| run: echo "version=$(jq -r '.packages["node_modules/playwright"].version' package-lock.json)" >> $GITHUB_OUTPUT | |
| - name: Cache Playwright browsers | |
| uses: actions/cache@v4 | |
| id: playwright-cache | |
| with: | |
| path: ~/.cache/ms-playwright | |
| key: ${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }} | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run check | |
| - run: CI=true npm run test |