18 lines
383 B
YAML
18 lines
383 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout: 10
|
|
steps:
|
|
- name: Checkout
|
|
run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git ${{ github.workspace }}
|
|
- name: Run CI
|
|
run: |
|
|
npm install
|
|
npm run lint
|
|
npm run typecheck
|
|
npm test
|