diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index a0c6f196..192d5244 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -8,7 +8,7 @@ on: jobs: nuxt: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest if: ${{ github.event.workflow_run.conclusion == 'success' }} @@ -16,11 +16,6 @@ jobs: contents: read pull-requests: read - strategy: - matrix: - os: [ubuntu-latest] - node: [22] - steps: - uses: haya14busa/action-workflow_run-status@v1 @@ -39,7 +34,7 @@ jobs: - name: Install node uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node }} + node-version: 22 cache: pnpm - name: Install latest nuxt/ui @@ -55,7 +50,7 @@ jobs: run: pnpm run build vue: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest if: ${{ github.event.workflow_run.conclusion == 'success' }} @@ -63,11 +58,6 @@ jobs: contents: read pull-requests: read - strategy: - matrix: - os: [ubuntu-latest] - node: [22] - steps: - uses: haya14busa/action-workflow_run-status@v1 @@ -86,7 +76,7 @@ jobs: - name: Install node uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node }} + node-version: 22 cache: pnpm - name: Install latest nuxt/ui @@ -95,8 +85,8 @@ jobs: - name: Install dependencies run: pnpm install - # - name: Typecheck - # run: pnpm run typecheck + - name: Typecheck + run: pnpm run typecheck - name: Build run: pnpm run build \ No newline at end of file