CI without apt-get
Some checks failed
CI / test (push) Failing after 46s

This commit is contained in:
2026-02-05 20:05:05 +00:00
parent 038eecb57d
commit 7aaeefd85d

View File

@@ -8,13 +8,12 @@ jobs:
steps:
- name: Checkout
run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git .
- name: Install Node
- name: Check Node
run: |
which node npm || (apt-get update && apt-get install -y nodejs npm)
node --version
npm --version
which node && node --version
which npm && npm --version
- name: Install Dependencies
run: npm ci
run: npm install
- name: Lint
run: npm run lint
- name: Typecheck