Skip to content

feat: Adds neonctl create-app command #261

feat: Adds neonctl create-app command

feat: Adds neonctl create-app command #261

Workflow file for this run

name: PR to main branch
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm test