Skip to content

Add custom apps sdk #16

Add custom apps sdk

Add custom apps sdk #16

Workflow file for this run

# For more information do to https://kontent-ai.github.io/ci-and-automation/ci-and-automation
name: "Build" # Represents the name of the whole action.
on: # Specifies the section where we describe our build triggers.
push: # The action runs with push.
pull_request: # The action runs with a pull request.
schedule: # Specifies the section where we describe the schedule of running the action.
- cron: '0 18 * * 1' # The CRON expression describes when to run the action.
jobs: # Specifies the section where we describe our jobs.
Build: # Specific job section.
runs-on: ubuntu-latest # Describes the environment.
steps: # Specifies the section where we describe the job's steps.
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Check code format
run: npm run fmt:check