2021-12-07 11:35:47 +01:00
|
|
|
name: 'cli'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-05-13 18:48:23 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.2'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-05-13 18:48:23 +02:00
|
|
|
- name: 'Setup Node.js'
|
2023-01-10 23:15:36 +01:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2021-06-09 20:31:45 +02:00
|
|
|
with:
|
2022-02-19 18:30:29 +01:00
|
|
|
node-version: 'lts/*'
|
2021-07-01 10:00:18 +02:00
|
|
|
cache: 'npm'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-05-13 18:48:23 +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 }}"'
|
|
|
|
- run: 'npm run lint:editorconfig'
|
|
|
|
- run: 'npm run lint:markdown'
|
2023-01-10 23:15:36 +01:00
|
|
|
- run: 'npm run lint:eslint'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
|
|
|
build:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-05-13 18:48:23 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.2'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-05-13 18:48:23 +02:00
|
|
|
- name: 'Setup Node.js'
|
2023-01-10 23:15:36 +01:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2021-06-09 20:31:45 +02:00
|
|
|
with:
|
2022-02-19 18:30:29 +01:00
|
|
|
node-version: 'lts/*'
|
2021-07-01 10:00:18 +02:00
|
|
|
cache: 'npm'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-05-13 18:48:23 +02:00
|
|
|
- name: 'Install dependencies'
|
|
|
|
run: 'npm clean-install'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
|
|
|
- name: 'Build'
|
|
|
|
run: 'npm run build'
|
|
|
|
|
2023-01-10 23:15:36 +01:00
|
|
|
- run: 'npm run build:typescript'
|
|
|
|
|
2021-06-09 20:31:45 +02:00
|
|
|
test:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-05-13 18:48:23 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.2'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-05-13 18:48:23 +02:00
|
|
|
- name: 'Setup Docker'
|
2021-12-06 17:18:14 +01:00
|
|
|
uses: 'actions-hub/docker/cli@master'
|
|
|
|
env:
|
|
|
|
SKIP_LOGIN: true
|
|
|
|
|
2023-05-13 18:48:23 +02:00
|
|
|
- name: 'Setup Node.js'
|
2023-01-10 23:15:36 +01:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2021-06-09 20:31:45 +02:00
|
|
|
with:
|
2022-02-19 18:30:29 +01:00
|
|
|
node-version: 'lts/*'
|
2021-07-01 10:00:18 +02:00
|
|
|
cache: 'npm'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2023-05-13 18:48:23 +02:00
|
|
|
- name: 'Install dependencies'
|
|
|
|
run: 'npm clean-install'
|
2021-06-09 20:31:45 +02:00
|
|
|
|
2022-04-23 18:41:14 +02:00
|
|
|
- name: 'Build'
|
|
|
|
run: 'npm run build'
|
|
|
|
|
2021-06-09 20:31:45 +02:00
|
|
|
- name: 'Test'
|
|
|
|
run: 'npm run test'
|