2023-10-23 23:16:24 +02:00
|
|
|
name: "cli"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
2023-10-23 23:16:24 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2021-06-09 20:31:45 +02:00
|
|
|
steps:
|
2023-10-23 23:16:24 +02:00
|
|
|
- uses: "actions/checkout@v4.0.0"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Setup Node.js"
|
|
|
|
uses: "actions/setup-node@v3.8.1"
|
2021-06-09 20:31:45 +02:00
|
|
|
with:
|
2023-10-23 23:16:24 +02:00
|
|
|
node-version: "lts/*"
|
|
|
|
cache: "npm"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
|
|
|
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
|
2023-10-23 23:16:24 +02:00
|
|
|
- run: "npm run lint:editorconfig"
|
|
|
|
- run: "npm run lint:markdown"
|
|
|
|
- run: "npm run lint:eslint"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
|
|
|
build:
|
2023-10-23 23:16:24 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2021-06-09 20:31:45 +02:00
|
|
|
steps:
|
2023-10-23 23:16:24 +02:00
|
|
|
- uses: "actions/checkout@v4.0.0"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Setup Node.js"
|
|
|
|
uses: "actions/setup-node@v3.8.1"
|
2021-06-09 20:31:45 +02:00
|
|
|
with:
|
2023-10-23 23:16:24 +02:00
|
|
|
node-version: "lts/*"
|
|
|
|
cache: "npm"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Build"
|
|
|
|
run: "npm run build"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- run: "npm run build:typescript"
|
2023-01-10 23:15:36 +01:00
|
|
|
|
2021-06-09 20:31:45 +02:00
|
|
|
test:
|
2023-10-23 23:16:24 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2021-06-09 20:31:45 +02:00
|
|
|
steps:
|
2023-10-23 23:16:24 +02:00
|
|
|
- uses: "actions/checkout@v4.0.0"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Setup Docker"
|
|
|
|
uses: "actions-hub/docker/cli@master"
|
2021-12-06 17:18:14 +01:00
|
|
|
env:
|
|
|
|
SKIP_LOGIN: true
|
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Setup Node.js"
|
|
|
|
uses: "actions/setup-node@v3.8.1"
|
2021-06-09 20:31:45 +02:00
|
|
|
with:
|
2023-10-23 23:16:24 +02:00
|
|
|
node-version: "lts/*"
|
|
|
|
cache: "npm"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Build"
|
|
|
|
run: "npm run build"
|
2022-04-23 18:41:14 +02:00
|
|
|
|
2023-10-23 23:16:24 +02:00
|
|
|
- name: "Test"
|
|
|
|
run: "npm run test"
|