Files
terminal-layout-sync/.gitea/workflows/ci.yml
7000pctAUTO 8d8c516fa9
Some checks failed
CI / test (push) Failing after 39s
Try Docker container for CI
2026-02-05 19:52:58 +00:00

21 lines
444 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
container: node:18-bullseye
steps:
- name: Checkout
run: |
git clone --depth=1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git .
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test