From 1d79e86315db6951e9ea35afd461f8bce5a1fd62 Mon Sep 17 00:00:00 2001 From: Jack Greiner Date: Tue, 7 Oct 2025 16:54:34 -0400 Subject: [PATCH] tests.yml: Run tests on both Debian and Alpine base images. --- .forgejo/workflows/tests.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.forgejo/workflows/tests.yml b/.forgejo/workflows/tests.yml index a493847..08380dd 100644 --- a/.forgejo/workflows/tests.yml +++ b/.forgejo/workflows/tests.yml @@ -1,7 +1,14 @@ on: [ pull_request, push ] jobs: tests: + strategy: + matrix: + image: + - code.forgejo.org/oci/node:22-trixie + - code.forgejo.org/oci/node:22-alpine runs-on: docker + container: + image: ${{ matrix.image }} steps: - uses: actions/checkout@v4