From 258b80a6a59ac0c1b034bc42aca5932e76fd0f72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Rosado?= Date: Wed, 14 Jun 2023 14:12:42 +0100 Subject: [PATCH] Add step to install next deps and run test (#1528) --- .github/workflows/test-next.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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