diff --git a/.github/workflows/basic-test.yml b/.github/workflows/basic-test.yml index e4a6ad60..f133a7fb 100644 --- a/.github/workflows/basic-test.yml +++ b/.github/workflows/basic-test.yml @@ -38,8 +38,7 @@ jobs: unit-test: strategy: matrix: - os: [ubuntu-latest] # to have test faster - # os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest, windows-latest] node-version: [20, 22] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index e591b9e0..c58e6b27 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,8 +10,8 @@ jobs: pr-test: uses: ./.github/workflows/basic-test.yml - # pr-e2e-test: - # uses: ./.github/workflows/e2e-test.yml + pr-e2e-test: + uses: ./.github/workflows/e2e-test.yml check-commit-lint: name: Check commit message follows guidelines @@ -35,7 +35,7 @@ jobs: - name: Check if Prettier was run run: npx pretty-quick --check - # backwards-compatibility-test: - # name: Backwards compatibility test - # needs: [pr-test] - # uses: ./.github/workflows/backwards-compatibility-test.yml + backwards-compatibility-test: + name: Backwards compatibility test + needs: [pr-test] + uses: ./.github/workflows/backwards-compatibility-test.yml