diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f87e2a6 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI + +on: + pull_request: + branches: [ main ] + +jobs: + ci: + runs-on: ubuntu-latest + steps: + - name: Set Environment + id: source-env + uses: ./ + with: + env-file: tests/.env + - name: Test GITHUB_OPTIONS is output + if: ${{ !steps.source-env.outputs.node_options && steps.source-env.conclusion == 'failure' }} + +