Files
terminal-layout-sync/.gitea/workflows/ci.yml
7000pctAUTO e01be446b0
Some checks failed
CI / test (push) Failing after 49s
Try CI with checkout and node setup
2026-02-05 19:48:41 +00:00

18 lines
338 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
full: true
- run: |
which node || (apt-get update && apt-get install -y nodejs npm)
npm install
npm run lint
npm run typecheck
npm test