From 05b8f5355aece39c101a3a5a5a1eb3115cf1dbb9 Mon Sep 17 00:00:00 2001 From: Becky Smith Date: Wed, 16 Oct 2024 14:55:28 +0100 Subject: [PATCH] Build assets and run tests without functional tests --- .github/workflows/update-dependencies.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 68cda889..bb48e4d0 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -12,8 +12,14 @@ jobs: - uses: "opensafely-core/setup-action@v1" with: python-version: "3.11" - install-just: true + install-just: true + - uses: actions/setup-node@v4 + with: + node-version-file: ".node-version" + cache: "npm" + cache-dependency-path: package-lock.json + - uses: opensafely-core/update-dependencies-action@main with: update_command: "just compile-reqs -U" - on_changes_command: "just test-all" + on_changes_command: "just assets && just docs-build && just test --ignore=tests/functional"