diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json new file mode 100644 index 00000000..02d0e774 --- /dev/null +++ b/.codesandbox/ci.json @@ -0,0 +1,6 @@ +{ + "buildCommand": "build", + "packages": ["/"], + "sandboxes": ["/examples/example-client", "/examples/example-ssr"], + "node": "18" +} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c2ea538..1e030a45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x] + node-version: [18.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -20,6 +20,6 @@ jobs: - name: build run: npm run build - + - name: test run: npm run test