diff --git a/.github/workflows/test-next.yml b/.github/workflows/test-next.yml index 683d8cad..c8b50b33 100644 --- a/.github/workflows/test-next.yml +++ b/.github/workflows/test-next.yml @@ -60,12 +60,20 @@ jobs: - name: Build run: make build - - name: TypeScript Tests + - name: TypeScript Tests (core) run: make test-ts - name: Python Tests run: make test-py + - name: install next deps + working-directory: pyscript.core + run: npm i + + - name: Run next tests + working-directory: pyscript.core + run: npm test + - name: Integration Tests run: make test-integration-parallel