From 7d56d52cbb67332c51e70ec50dcfedc1ca97b47a Mon Sep 17 00:00:00 2001 From: Matthew Smith Date: Fri, 10 Feb 2023 17:10:10 +0000 Subject: [PATCH] chore: add smoke test for generator-options command (#163) --- .github/workflows/smoke.yml | 48 +++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/smoke.yml diff --git a/.github/workflows/smoke.yml b/.github/workflows/smoke.yml new file mode 100644 index 0000000..de4b544 --- /dev/null +++ b/.github/workflows/smoke.yml @@ -0,0 +1,48 @@ +name: Smoke Tests + +on: + push: + branches: + - "**" + pull_request: + branches: + - "**" + +jobs: + smoke-tests: + name: Smoke Tests + runs-on: ubuntu-latest + + steps: + - name: Check out Git repository + uses: actions/checkout@v3 + + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: 16.x + cache: 'npm' + + - name: Install Node.js dependencies + run: | + npm install + + - name: Make script executable + run: | + chmod +x ./src/index.js + + - name: Test Generator Options Command + run: | + echo "./src/index.js generator-options openapi-forge-javascript" >> $GITHUB_OUTPUT + id: generator_options + + - name: Check Output of Generator Options + run: | + echo "Checking the output for moduleFormat" + if grep -q "moduleFormat" <${{join(steps.generator_options.outputs.*, '\n')}}; then + echo "Output includes moduleFormat" + else + echo "ERROR: Output does not include moduleFormat" + echo "Full Output: ${{join(steps.generator_options.outputs.*, '\n')}}" + exit 1 + fi