Bump @opentermsarchive/engine from 9.0.0 to 9.1.0 #193
Workflow file for this run
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: Validate declarations | |
| on: | |
| pull_request: | |
| workflow_call: | |
| jobs: | |
| # Using Ubuntu 22.04 due to AppArmor restrictions in newer versions (23.10+) that interfere with Puppeteer's sandbox functionality. See https://pptr.dev/troubleshooting#issues-with-apparmor-on-ubuntu | |
| validate_metadata: | |
| # Do not run on the creation of the repository | |
| if: github.event.created != true | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - run: npm install | |
| - run: npm run test:metadata | |
| validate_schema: | |
| # Do not run on the creation of the repository | |
| if: github.event.created != true | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - run: npm install | |
| - run: npm run test:schema | |
| lint: | |
| # Do not run on the creation of the repository | |
| if: github.event.created != true | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - run: npm install | |
| - run: npm run lint | |
| validate_modified_declarations: | |
| # Do not run on the creation of the repository | |
| if: github.event.created != true | |
| runs-on: ubuntu-22.04 | |
| 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@v4 | |
| if: ${{ failure() }} | |
| with: | |
| name: snapshots_and_versions | |
| path: ./data | |
| if-no-files-found: error |