diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db76aefbd543..ee67a3f091fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,11 +107,9 @@ jobs: needs: build strategy: matrix: - os: [ubuntu-latest] - node_version: [14, 16] + os: [ubuntu-latest, windows-latest] + node_version: [14, 16, 18] include: - - os: windows-latest - node_version: 14 - os: macos-latest node_version: 14 fail-fast: false diff --git a/packages/integrations/react/server-v17.js b/packages/integrations/react/dist-test/server-v17.js similarity index 100% rename from packages/integrations/react/server-v17.js rename to packages/integrations/react/dist-test/server-v17.js diff --git a/packages/integrations/react/server.js b/packages/integrations/react/dist-test/server.js similarity index 100% rename from packages/integrations/react/server.js rename to packages/integrations/react/dist-test/server.js diff --git a/packages/integrations/react/static-html.js b/packages/integrations/react/dist-test/static-html.js similarity index 100% rename from packages/integrations/react/static-html.js rename to packages/integrations/react/dist-test/static-html.js diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index cbc0e3076bce..86a04118ec54 100644 --- a/packages/integrations/react/package.json +++ b/packages/integrations/react/package.json @@ -23,8 +23,8 @@ ".": "./dist/index.js", "./client.js": "./client.js", "./client-v17.js": "./client-v17.js", - "./server.js": "./server.js", - "./server-v17.js": "./server-v17.js", + "./server.js": "./dist-test/server.js", + "./server-v17.js": "./dist-test/server-v17.js", "./package.json": "./package.json", "./jsx-runtime": "./jsx-runtime.js" },