From 47c39dfca655f2e13868b228e41ba9c9be0d3e7b Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 6 Aug 2023 02:07:15 -0500 Subject: [PATCH] add pre stage for install/dnf tweaks --- .forgejo/workflows/pylint.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/pylint.yml b/.forgejo/workflows/pylint.yml index 34c6b9a..6acb033 100644 --- a/.forgejo/workflows/pylint.yml +++ b/.forgejo/workflows/pylint.yml @@ -6,11 +6,16 @@ jobs: test: runs-on: docker container: - image: fedora:38 + image: fedora:latest # strategy: # matrix: # python-version: ["3.8.17", "3.9.17", "3.10.12", "3.11.4"] steps: + - name: Install NodeJS for actions + run: | + echo -e 'max_parallel_downloads=20\ndeltarpm=False\nfastestmirror=False' >> /etc/dnf/dnf.conf + dnf -yq install nodejs + dnf clean all - uses: actions/checkout@v3 # - name: "Set up Python ${{ matrix.python-version }}" # uses: https://github.com/actions/setup-python@v3