Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 973e1e5965 | |||
| 9efe5ca943 | |||
| bb3d6ff091 | |||
| 8e5547a569 | |||
| aa28c78e5d | |||
| f0423d42b6 | |||
| e1417ad595 | |||
| 3d8e18ba3f | |||
| 7aaeefd85d | |||
| 038eecb57d | |||
| f512b819e1 | |||
| 5375831a46 | |||
| 52d09622f8 | |||
| 8d8c516fa9 | |||
| aecd00cc7d | |||
| e01be446b0 | |||
| 05297d8db5 | |||
| bbb45e054d | |||
| 8fdfed5927 | |||
| 7661f3b395 | |||
| 82c06b4171 | |||
| 44680a88fa | |||
| 8e9de1ec03 | |||
| 3d0f3f48af |
@@ -1,21 +1,16 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
cache: 'npm'
|
||||
- run: npm ci
|
||||
- run: npm run typecheck
|
||||
- run: npm run lint
|
||||
- run: npm test
|
||||
- name: Checkout
|
||||
run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git .
|
||||
- name: Install Dependencies
|
||||
run: npm install
|
||||
- name: Lint
|
||||
run: npm run lint
|
||||
- name: Typecheck
|
||||
run: npm run typecheck
|
||||
|
||||
20
.github/workflows/ci.yml
vendored
Normal file
20
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '18'
|
||||
- run: npm ci
|
||||
- run: npm run lint
|
||||
- run: npm run typecheck
|
||||
- run: npm test
|
||||
Reference in New Issue
Block a user