-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ansible-lint offense for deprecated nodejs
- Loading branch information
1 parent
6ef7697
commit f2eeb27
Showing
2 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
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
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 }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,4 @@ | |
- name: yo | ||
|
||
roles: | ||
- role: geerlingguy.nodejs | ||
- role: alphanodes.setup.nodejs |