This commit is contained in:
@@ -6,12 +6,18 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout
|
||||||
with:
|
run: |
|
||||||
full: true
|
git clone --depth=1 --no-single-branch https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git .
|
||||||
- run: |
|
- name: Install Node
|
||||||
which node || (apt-get update && apt-get install -y nodejs npm)
|
run: |
|
||||||
npm install
|
apt-get update -qq
|
||||||
npm run lint
|
apt-get install -y -qq nodejs npm > /dev/null 2>&1
|
||||||
npm run typecheck
|
- name: Install Dependencies
|
||||||
npm test
|
run: npm ci
|
||||||
|
- name: Lint
|
||||||
|
run: npm run lint
|
||||||
|
- name: Typecheck
|
||||||
|
run: npm run typecheck
|
||||||
|
- name: Test
|
||||||
|
run: npm test
|
||||||
|
|||||||
Reference in New Issue
Block a user