feat: use new group and var to install dashd_nightly_image on subset of nodes #617
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
- v[0-9]+\.[0-9]+-dev | |
jobs: | |
test: | |
name: Test package | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
env: | |
ANSIBLE_LINT_VERSION: "6.16.0" | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Setup Node.JS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- name: Install dependencies | |
run: npm ci | |
- name: Run ESLint | |
run: npm run lint | |
- name: Install requirements | |
run: ansible-galaxy install -r ansible/requirements.yml | |
- name: Install ansible-lint | |
run: pip3 install ansible-lint==${{ env.ANSIBLE_LINT_VERSION }} | |
- name: Run ansible-lint | |
run: ansible-lint ansible |