Skip to content

feat(audi): add specifications for A6 e-tron, e-tron GT, Q4 e-tron, Q… #37

feat(audi): add specifications for A6 e-tron, e-tron GT, Q4 e-tron, Q…

feat(audi): add specifications for A6 e-tron, e-tron GT, Q4 e-tron, Q… #37

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
- beta
- alpha
- "**"
pull_request:
branches:
- main
- master
- beta
- alpha
jobs:
lint-commits:
name: Lint Commits
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Validate commit messages
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.sha }} --verbose
validate:
name: Validate Dataset
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Validate JSON syntax
run: npm run validate
- name: Full validation (structure + schema + ev-etl)
run: npm run validate:full
build:
name: Build
runs-on: ubuntu-latest
needs: validate
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build dataset
run: npm run build