Files
espanso/.gitea/workflows/ci.yml
T
naomi ffb710894d
Node.js CI / CI (push) Failing after 13s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 48s
fix: need yes flag
2025-12-22 17:44:15 -08:00

27 lines
433 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 update && sudo apt-get install -y yamllint
- name: Run Linter
run: make lint
- name: Run Tests
run: make test