Skip to content

fix: AutoTrader mobile — pill toggle, accordion layout, no comment wall #11

fix: AutoTrader mobile — pill toggle, accordion layout, no comment wall

fix: AutoTrader mobile — pill toggle, accordion layout, no comment wall #11

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: TypeScript type check
run: npm run typecheck
- name: Run tests
run: npm test
- name: Production build
run: npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
retention-days: 7