Update to support 15+, 16+ #28
Workflow file for this run
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
# WARNING: This file is managed by: https://github.com/massdriver-cloud/bundle-github-repo-manager | |
# DO NOT EDIT HERE. It will be over written. | |
name: Validate | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build: | |
name: Validate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Download Massdriver CLI | |
uses: dsaltares/[email protected] | |
with: | |
repo: "massdriver-cloud/massdriver-cli" | |
file: "^mass-.*-linux-amd64\\.tar\\.gz$" | |
regex: true | |
token: ${{ secrets.ORGANIZATION_GITHUB_TOKEN }} | |
- name: Build | |
env: | |
MASSDRIVER_API_KEY: ${{ secrets.MASSDRIVER_BETA_RELEASE_CHANNEL_API_KEY }} | |
run: tar -xzf mass-*.tar.gz -C /usr/local/bin && rm -rf mass-*.tar.gz .git* && mass bundle build massdriver.yaml | |
- name: Validate params schema | |
run: mass schema validate -s https://json-schema.org/draft-07/schema -d ./schema-params.json | |
- name: Validate connections schema | |
run: mass schema validate -s https://json-schema.org/draft-07/schema -d ./schema-connections.json | |
- name: Validate artifacts schema | |
run: mass schema validate -s https://json-schema.org/draft-07/schema -d ./schema-artifacts.json | |
- name: Terraform validate | |
uses: dflook/terraform-validate@v1 | |
id: validate | |
with: | |
path: src |