From 4684b04a900a5534b3906a49cfad3359a815a519 Mon Sep 17 00:00:00 2001 From: Jens Pots Date: Sun, 24 Nov 2024 15:20:58 +0100 Subject: [PATCH] feat: add caching to test ci job --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f656123..904f22b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,6 +26,7 @@ jobs: with: java-version: '22' distribution: 'adopt' + cache: gradle # Include a Protobuf and gRPC code generator. - name: Install Protoc uses: arduino/setup-protoc@v3 @@ -37,6 +38,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: '20' + cache: npm # Run tests for the `rdfc-cli` package. - name: Run tests `rdfc-cli` run: gradle test --console=plain --warning-mode all