Skip to content
This repository was archived by the owner on Jul 14, 2022. It is now read-only.

Latest commit

 

History

History
29 lines (23 loc) · 704 Bytes

File metadata and controls

29 lines (23 loc) · 704 Bytes

Generic badge

Project Validator

This validation script is used to validate the project .json-files in each first-level subfolder of the workspace against the Schema, using Ajv JSON validator.

Usage

name: Project Validation

on:
  pull_request:
    branches:
      - master
  workflow_dispatch:
    branches:
      - master

jobs:
  validation:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Validate JSON
        uses: Closing-the-Gap-in-NLS-DH/project-validator@main
        with:
          workspace: ${{ github.workspace }}