From 854ee4ce4f1f2edb1393d37dc7c7df3c855ad03d Mon Sep 17 00:00:00 2001 From: Jack Greiner Date: Tue, 7 Oct 2025 04:55:50 -0400 Subject: [PATCH] tests.yml: Run tests on both Debian and Alpine base images. --- .forgejo/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.forgejo/workflows/tests.yml b/.forgejo/workflows/tests.yml index a493847..2c3a117 100644 --- a/.forgejo/workflows/tests.yml +++ b/.forgejo/workflows/tests.yml @@ -1,7 +1,12 @@ on: [ pull_request, push ] jobs: tests: + strategy: + matrix: + tag: [lts, lts-alpine] runs-on: docker + container: + image: "node:${{ matrix.tag }}" steps: - uses: actions/checkout@v4