Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.

chore(deps): bump actions/setup-node from 4 to 6 #497

chore(deps): bump actions/setup-node from 4 to 6

chore(deps): bump actions/setup-node from 4 to 6 #497

name: Podman Install on Linux Distros
on:
push:
# branches: [ main ]
workflow_dispatch:
jobs:
container-test-job:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container: [
"ubuntu:24.10",
"ubuntu:24.04",
"debian:12",
"fedora:40",
"fedora:39",
"manjarolinux/base",
"archlinux:latest",
]
container:
image: ${{ matrix.container }}
env:
NODE_ENV: test
steps:
- name: print os version details
run: cat /etc/os-release
- uses: actions/checkout@v4
- uses: actions/setup-node@v6
with:
node-version: 20
- name: 🧱 Install Dependencies
run: |
npm ci
- name: 🧱 Run tests
run: |
npm run testCi