Test a module with CITGM #29
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: Test a module with CITGM | |
on: | |
workflow_dispatch: | |
inputs: | |
module: | |
description: 'Module to test' | |
required: true | |
repository: | |
description: 'CITGM repository to checkout' | |
required: true | |
default: nodejs/citgm | |
ref: | |
description: 'CITGM GitHub ref to checkout' | |
required: true | |
default: main | |
jobs: | |
show-parameters: | |
name: Parameters for testing "${{ github.event.inputs.module }}" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Log workflow parameters | |
env: | |
WORKFLOW_PARAMETERS: ${{ toJSON(github.event.inputs) }} | |
run: echo "$WORKFLOW_PARAMETERS" | |
test-module: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
node-version: | |
- 18.x | |
- 20.x | |
- 21.x | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.inputs.repository }} | |
ref: ${{ github.event.inputs.ref }} | |
show-progress: false | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install packages | |
run: npm install | |
- name: Run CITGM | |
run: node bin/citgm.js ${{ github.event.inputs.module }} |