mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
70 lines
1.4 KiB
YAML
70 lines
1.4 KiB
YAML
name: 'cli'
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v3.0.0'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v3.0.0'
|
|
with:
|
|
node-version: 'lts/*'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
|
|
- run: 'npm run lint:editorconfig'
|
|
- run: 'npm run lint:markdown'
|
|
- run: 'npm run lint:typescript'
|
|
|
|
build:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v3.0.0'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v3.0.0'
|
|
with:
|
|
node-version: 'lts/*'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Build'
|
|
run: 'npm run build'
|
|
|
|
test:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v3.0.0'
|
|
|
|
- name: 'Use Docker'
|
|
uses: 'actions-hub/docker/cli@master'
|
|
env:
|
|
SKIP_LOGIN: true
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v3.0.0'
|
|
with:
|
|
node-version: 'lts/*'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Build'
|
|
run: 'npm run build'
|
|
|
|
- name: 'Test'
|
|
run: 'npm run test'
|