Skip to content

Add missing Branch #170

Add missing Branch

Add missing Branch #170

Workflow file for this run

name: Check Build
on:
pull_request:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v3
- name: Setup node env 🏗
uses: actions/setup-node@v3
with:
node-version: 14.21
cache: 'npm'
- name: Install dependencies 💚
run: npm install
- name: Build project
run: npm run build
- name: Generate project
run: npm run generate