Files
terminal-layout-sync/.gitea/workflows/ci.yml
7000pctAUTO bbb45e054d
Some checks failed
CI / test (push) Failing after 2m51s
Update CI with Node setup
2026-02-05 19:42:19 +00:00

24 lines
574 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 ${{ github.workspace }}
- name: Setup Node
run: |
apt-get update && apt-get install -y nodejs npm
node --version
npm --version
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test