Skip to content

Added initial setup for HANA ORM #4

Added initial setup for HANA ORM

Added initial setup for HANA ORM #4

Workflow file for this run

name: Build Project
on:
push:
branches: [main]
jobs:
build-on-push:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: pnpm/action-setup@v2.0.1
with:
version: 6.32.2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Check linting
run: pnpm lint
- name: Check formatting
run: pnpm format
- name: Build
run: pnpm build