1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/.github/workflows/cli.yml

72 lines
1.5 KiB
YAML
Raw Permalink Normal View History

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