Adds a "Securing Mechanisms" section to the directory #35
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
name: Validate VC Specs Directory | |
on: | |
pull_request: {} | |
jobs: | |
validate-directory: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code... | |
uses: actions/checkout@v2 | |
- name: Setup Node 16... | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
- name: Install vc-specs-directory tooling... | |
working-directory: tooling | |
run: npm i | |
- name: Validate vc-specs-directory entries | |
working-directory: tooling | |
run: npm run validate | |
- name: Generate vc-specs-directory index | |
working-directory: tooling | |
run: npm run generate-index |