Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,18 @@ jobs:
- name: Get sources
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'

- name: Restore npm cache
uses: actions/cache@v4
with:
path: ./node_modules
key: ${{ runner.os }}-node-modules

- name: Run npm ci
run: npm ci --no-audit --no-fund
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build
run: npm run test
run: pnpm run test

16 changes: 7 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,23 @@ jobs:
- name: Get sources
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'

- name: Restore npm cache
uses: actions/cache@v4
with:
path: ./node_modules
key: ${{ runner.os }}-node-modules

- name: Run npm ci
run: npm ci --no-audit --no-fund
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Install Internal Package
uses: DevExpress/github-actions/install-internal-package@main

- name: Build
run: npm run build
run: pnpm run build

- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
/coverage
/libpeerconnection.log
npm-debug.log
pnpm-debug.log
yarn-error.log
testem.log
/typings
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ If you need to run the ThemeBuilder UI locally, clone this repository and follow

## Prerequisites

You will need Node.js 12.16 or higher and npm 5.5.1 or higher. The app is built using angular-cli. Run `npm install @angular/cli -g` to install it.
You will need Node.js 20 or higher and pnpm 9 or higher. The app is built using angular-cli.

## Install required packages and Launch

Run the following commands:

```
npm install
npm start
pnpm install
pnpm start
```

Go to http://localhost:4200/.
Expand Down
Loading
Loading