Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

fix build

fix build #214

Workflow file for this run

name: CI
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out branch
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "6.x.x"
- name: Generate Certificates
run: dotnet dev-certs https --export-path ./cert/cert.crt --no-password --format PEM
- name: Install
run: npm ci
- name: Build Sitefinity React Framework
run: npm run build
env:
ENVIRONMENT: production
- name: Lint
run: npm run lint