Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Web UI for managing Golem #1195

Closed
wants to merge 22 commits into from
Closed
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
71 changes: 71 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,17 @@ jobs:
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: './golem-ui-service/frontend/package-lock.json'
- name: Build Frontend
working-directory: ./golem-ui-service/frontend
run: |
npm ci
npm run build

- run: cargo install cross
if: ${{ matrix.platform.cross }}
Expand Down Expand Up @@ -218,6 +229,18 @@ jobs:
run: git fetch origin --deepen=1
- name: Setup Rust
run: rustup update stable --no-self-update && rustup default stable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: './golem-ui-service/frontend/package-lock.json'
- name: Build Frontend
working-directory: ./golem-ui-service/frontend
run: |
npm ci
npm run build

- uses: Swatinem/rust-cache@v2
with:
shared-key: debug
Expand Down Expand Up @@ -287,6 +310,18 @@ jobs:
run: git fetch origin --deepen=1
- name: Setup Rust
run: rustup update stable --no-self-update && rustup default stable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: './golem-ui-service/frontend/package-lock.json'
- name: Build Frontend
working-directory: ./golem-ui-service/frontend
run: |
npm ci
npm run build

- uses: Swatinem/rust-cache@v2
with:
shared-key: debug-workertests
Expand Down Expand Up @@ -336,6 +371,18 @@ jobs:
run: git fetch origin --deepen=1
- name: Setup Rust
run: rustup update stable --no-self-update && rustup default stable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: './golem-ui-service/frontend/package-lock.json'
- name: Build Frontend
working-directory: ./golem-ui-service/frontend
run: |
npm ci
npm run build

- uses: Swatinem/rust-cache@v2
with:
shared-key: debug-workertests
Expand Down Expand Up @@ -373,6 +420,18 @@ jobs:
run: git fetch origin --deepen=1
- name: Setup Rust
run: rustup update stable --no-self-update && rustup default stable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: './golem-ui-service/frontend/package-lock.json'
- name: Build Frontend
working-directory: ./golem-ui-service/frontend
run: |
npm ci
npm run build

- uses: cargo-bins/cargo-binstall@main
- name: Install cargo-component
run: cargo binstall --no-confirm [email protected]
Expand Down Expand Up @@ -560,6 +619,18 @@ jobs:
run: git fetch origin --deepen=1
- name: Setup Rust
run: rustup update stable --no-self-update && rustup default stable && rustup target add ${{ matrix.cfg.rust-target }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: './golem-ui-service/frontend/package-lock.json'
- name: Build Frontend
working-directory: ./golem-ui-service/frontend
run: |
npm ci
npm run build

- uses: davidB/rust-cargo-make@v1
- name: Install Protoc
uses: arduino/setup-protoc@v3
Expand Down
Loading
Loading