20 lines
411 B
YAML
20 lines
411 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: Run CI
|
|
run: |
|
|
bash << 'EOF'
|
|
npm install 2>&1 | head -20
|
|
npm run lint
|
|
npm run typecheck
|
|
npm test
|
|
EOF
|