workflow/lint: stage/order, early nodejs
Some checks failed
ci-lint / test (push) Failing after 30s

This commit is contained in:
Josh Lay 2025-10-19 06:53:06 -05:00
parent 216beff86f
commit ff29027991
Signed by: jlay
SSH key fingerprint: SHA256:RwEMoWwXniQX1sqHfSD+3z+LKU/TOkv3i1qsy75vfec

View file

@ -15,21 +15,22 @@ jobs:
image: fedora:42 # lock to *latest stable*; rawhide/next is 'latest' tag
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install packages and ansible
- name: Action Requirements
run: |
echo -e 'max_parallel_downloads=20\ndeltarpm=False\nfastestmirror=False' | tee -a /etc/dnf/dnf.conf
dnf -yq install nodejs git pipx
- uses: actions/checkout@v3 # definitely needs nodejs, probably git
- name: ansible/collections
run: |
pipx install ansible-core ansible-lint
ansible-galaxy collection install -r meta/requirements.yml
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
- name: Lint
run: ansible-lint
- run: ansible-lint
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'