Files
terminal-layout-sync/.gitea/workflows/ci.yml
7000pctAUTO 52d09622f8
Some checks failed
CI / test (push) Failing after 47s
Try with actions/setup-node
2026-02-05 19:55:43 +00:00

29 lines
681 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
run: |
git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git repo
cd repo
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
working-directory: repo
- name: Lint
run: npm run lint
working-directory: repo
- name: Typecheck
run: npm run typecheck
working-directory: repo
- name: Test
run: npm test
working-directory: repo