Fix CI #560
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 declarations | |
on: | |
pull_request: | |
workflow_call: | |
jobs: | |
validate_schema: | |
runs-on: ubuntu-latest | |
env: | |
CHROME_DEVEL_SANDBOX: /usr/bin/google-chrome/chrome-sandbox | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm install | |
# - name: Check Chrome installation | |
# run: | | |
# which google-chrome | |
# which chrome | |
# ls -l /usr/bin/google-chrome | |
# ls -l /opt/google/chrome/ | |
# echo "Chrome version:" | |
# google-chrome --version | |
- name: Check Chrome sandbox | |
run: | | |
ls -l /opt/google/chrome/chrome-sandbox || echo "Sandbox not found in /opt/google/chrome/" | |
ls -l /usr/bin/chrome-sandbox || echo "Sandbox not found in /usr/bin/" | |
- run: npm run test:schema | |
lint: | |
runs-on: ubuntu-latest | |
env: | |
CHROME_DEVEL_SANDBOX: /opt/google/chrome/chrome-sandbox | |
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 | |
env: | |
CHROME_DEVEL_SANDBOX: /opt/google/chrome/chrome-sandbox | |
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 |