We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efbbec3 commit 016de41Copy full SHA for 016de41
2 files changed
.github/workflows/unit.yml
@@ -4,13 +4,15 @@ jobs:
4
unit:
5
name: Unit Tests
6
runs-on: ubuntu-latest
7
- strategy:
8
- matrix:
9
- node-version: [20.x,22.x]
10
11
steps:
12
- name: Main checkout
13
uses: actions/checkout@v4
14
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+
15
- name: Run unit tests
16
+ env:
17
+ COMPOSE_BAKE: 'true'
18
run: make test-ci
dockerfiles/docker-compose.yml
@@ -9,6 +9,10 @@ services:
ADDON_NAME: '${ADDON_NAME}'
ADDON_PATH: '${ADDON_PATH}'
VOLTO_VERSION: ${VOLTO_VERSION:-17}
+ cache_from:
+ - type=gha
+ cache_to:
+ - type=gha,mode=max
volumes:
- ${CURRENT_DIR}:/app/src/addons/${ADDON_PATH}/
environment:
0 commit comments