mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-22 16:07:20 +00:00
Simplify workflow to bare minimum
This commit is contained in:
parent
de9192adab
commit
e4add3cbb0
1 changed files with 11 additions and 14 deletions
25
.github/workflows/build-iso.yml
vendored
25
.github/workflows/build-iso.yml
vendored
|
|
@ -1,4 +1,4 @@
|
|||
name: Verify AeThex-OS
|
||||
name: Build AeThex-OS
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
@ -7,21 +7,18 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
verify:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 5
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '22'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci --legacy-peer-deps
|
||||
|
||||
- name: ✅ Code verified
|
||||
run: echo "AeThex-OS repository verified"
|
||||
|
||||
- run: npm install
|
||||
|
||||
- run: npm run build
|
||||
|
||||
- run: echo "✅ Build successful"
|
||||
|
|
|
|||
Loading…
Reference in a new issue