Files
terminal-layout-sync/.gitea/workflows/ci.yml
7000pctAUTO 7aaeefd85d
Some checks failed
CI / test (push) Failing after 46s
CI without apt-get
2026-02-05 20:05:05 +00:00

23 lines
534 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git .
- name: Check Node
run: |
which node && node --version
which npm && npm --version
- name: Install Dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test