diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 210b028a..211c851e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,6 +13,7 @@ jobs: strategy: matrix: node: ["18", "20", "22"] + typescript: ["5.5", "5.6", "5.7"] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -21,6 +22,7 @@ jobs: - uses: pnpm/action-setup@v4 - run: pnpm --version - run: pnpm install + - run: pnpm add -E -D typescript@${{ matrix.typescript }} -w - run: pnpm run build - run: pnpm run lint - run: pnpm run check diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 4526b7c5..6e1745af 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -22,7 +22,6 @@ jobs: node: ["18", "20", "22"] # browser: ["chromium", "firefox", "webkit"] browser: ["chromium"] - typescript: ["5.5", "5.6", "5.7"] env: VITE_SORA_SIGNALING_URL: ${{ secrets.TEST_SIGNALING_URL }} VITE_SORA_CHANNEL_ID_PREFIX: ${{ secrets.TEST_CHANNEL_ID_PREFIX }} @@ -41,7 +40,6 @@ jobs: - uses: pnpm/action-setup@v4 - run: pnpm --version - run: pnpm install - - run: pnpm add -E -D typescript@${{ matrix.typescript }} -w - run: pnpm run build - run: pnpm exec playwright install ${{ matrix.browser }} --with-deps - run: pnpm exec playwright test --project=${{ matrix.browser }}