Update engine to v1.2.1 to avoid crashing on extraction errors #39
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 declarations | |
on: | |
pull_request: | |
workflow_call: | |
jobs: | |
validate_schema: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run test:schema | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run lint | |
validate_modified_declarations: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # fetch all history for all branches and tags | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run test:modified | |
- name: Generate artifacts | |
if: ${{ failure() }} | |
run: npm run start:modified | |
- uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: snapshots_and_versions | |
path: ./data | |
if-no-files-found: error |