Files
espanso/.gitea/workflows/ci.yml
T
naomi 059c24be31
Node.js CI / CI (push) Failing after 3s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 47s
feat: add linting
2025-12-22 17:08:18 -08:00

27 lines
407 B
YAML

name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout Source Files
uses: actions/checkout@v4
- name: Install yamllint
run: sudo apt-get install yamllint
- name: Run Linter
run: make lint
- name: Run Tests
run: make test