Rocky_Mountain_Vending/.pnpm-store/v10/files/e1/471e91f3e07ca49849ab4d0b45b3998b6a87026f0a9422e51d98e0f18bbdb08b08e6ec981b69c7f32d3a22f8cd832d64e88b7980797d3aaf9d3aaa71ff7fdd
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

19 lines
442 B
Text

name: CI
on:
push:
branches: [master]
pull_request: # run on all PRs, not just PRs to a particular branch
jobs:
test:
strategy:
fail-fast: true
matrix:
nodeversion: [8.x, 10.x, 12.x, 14.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.nodeversion }}
- run: npm install
- run: npm test