refactor: split elastic_beat into core_filebeat, metricbeat and dashmate #788
Workflow file for this run
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: Install Ansible | |
run: | | |
python -m pip install --upgrade pip | |
pip install ansible | |
- 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 |