Skip to content

feat(prototype): teach the app screens what real app screens do #69

feat(prototype): teach the app screens what real app screens do

feat(prototype): teach the app screens what real app screens do #69

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run test:pricing
- run: npm run build --workspace apps/web
api:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: "8.5"
- run: composer install --no-interaction --prefer-dist
working-directory: apps/api
- run: cp .env.example .env && php artisan key:generate
working-directory: apps/api
- run: php artisan test
working-directory: apps/api