Minimal CI workflow
Some checks failed
CI / test (push) Failing after 45s

This commit is contained in:
2026-02-05 19:46:36 +00:00
parent bbb45e054d
commit 05297d8db5

View File

@@ -5,19 +5,13 @@ on: [push, pull_request]
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout: 10
steps: steps:
- name: Checkout - name: Checkout
run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git ${{ github.workspace }} run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git ${{ github.workspace }}
- name: Setup Node - name: Run CI
run: | run: |
apt-get update && apt-get install -y nodejs npm npm install
node --version npm run lint
npm --version npm run typecheck
- name: Install npm test
run: npm install
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test