Adding functionality for signing external modules #299
This file contains hidden or 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: CI | |
on: [push] | |
jobs: | |
lint-actions: | |
name: Lint Actions | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
action: ["build", "deploy", "setup"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "${{ matrix.action }}: validate action.yml against a remote schema" | |
uses: cardinalby/schema-validator-action@v3 | |
with: | |
file: './${{ matrix.action }}/action.yml' | |
schema: 'https://json.schemastore.org/github-action.json' |