-
Notifications
You must be signed in to change notification settings - Fork 19
44 lines (35 loc) · 939 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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