Skip to content

feat(create-app): add a create app command to init a new base44 project #68

feat(create-app): add a create app command to init a new base44 project

feat(create-app): add a create app command to init a new base44 project #68

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint