16 lines
329 B
YAML
16 lines
329 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: |
|
|
git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git /tmp/repo
|
|
cd /tmp/repo
|
|
npm install
|
|
npm run lint
|
|
npm run typecheck
|
|
npm test
|