forked from aws-samples/serverless-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (26 loc) · 848 Bytes
/
schema-validation.yml
File metadata and controls
32 lines (26 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: "Schema Validation"
permissions:
contents: read
on: [pull_request]
jobs:
validate-pattern:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@e9772d140489982e0e3704fea5ee93d536f1e275
with:
separator: ","
- run: cd scripts && npm i
- name: Validate
run: node scripts/validate.js
env: # Or as an environment variable
MODIFIED_FILES: ${{ steps.changed-files.outputs.modified_files }}
ADDED_FILES: ${{ steps.changed-files.outputs.added_files }}
PR_NUMBER: ${{ github.event.number }}
GH_AUTOMATION: false