Skip to content

Build

Build #2205

Workflow file for this run

name: Build
on:
push:
branches:
- master
workflow_dispatch:
pull_request:
branches:
- master
schedule:
- cron: '0 23 * * *'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
node: [24]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: ${{ matrix.node }}
- name: Install
shell: bash
run: npm ci
- name: Test
shell: bash
run: npm test
test-with-theia-latest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
node: [24]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: ${{ matrix.node }}
- name: Install
shell: bash
run: npm ci
- name: Generate and Build Templates with Latest Theia version
shell: bash
run: ./.github/workflows/generate-and-build-all-templates.sh latest
test-with-theia-next:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
node: [24]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: ${{ matrix.node }}
- name: Install
shell: bash
run: npm ci
- name: Generate and Build Templates with Next Theia version
shell: bash
run: ./.github/workflows/generate-and-build-all-templates.sh next