mirror of
https://github.com/blackboxprogramming/blackroad-ai-dashboard.git
synced 2026-03-17 00:57:11 -05:00
16 lines
357 B
YAML
16 lines
357 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm test --if-present
|
|
- run: npm run lint --if-present
|
|
- run: npm run build --if-present
|