Skip to content

Commit

Permalink
Fix ansible-lint offense for deprecated nodejs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Nov 9, 2023
1 parent 6ef7697 commit f2eeb27
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
51 changes: 51 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
name: "alphanodes.setup.nodejs"
'on':
pull_request:
push:
branches:
- main
paths:
- 'roles/nodejs/**'
- 'molecule/nodejs/**'
- '.github/workflows/nodejs.yml'

defaults:
run:
working-directory: 'nodejs'

jobs:
build:
runs-on: ubuntu-latest
env:
PY_COLORS: 1
ANSIBLE_FORCE_COLOR: 1

strategy:
matrix:
distro:
- ubuntu2204
- debian11

steps:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
path: 'nodejs'

- name: Set up Python 3.
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install test dependencies.
run: |
python -m pip install --no-cache-dir --upgrade pip
python -m pip install -r requirements.txt
- name: Run Molecule tests.
run: |
molecule --version
molecule test -s nodejs
env:
MOLECULE_DISTRO: ${{ matrix.distro }}
2 changes: 1 addition & 1 deletion molecule/nodejs/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
- name: yo

roles:
- role: geerlingguy.nodejs
- role: alphanodes.setup.nodejs

0 comments on commit f2eeb27

Please sign in to comment.