Files
the-pet-loft/.gitea/workflows/ci.yml
ianshaloom 0cb2c00f43
All checks were successful
CI / Lint, Typecheck & Test (push) Successful in 2m28s
fix(ci): update branch pattern in CI workflow
Changed the branch pattern in the CI workflow from a specific feature branch to a wildcard pattern ("**") for broader applicability. This adjustment is part of ongoing testing and refinement of the CI process.
2026-03-13 21:44:18 +03:00

33 lines
542 B
YAML

name: CI
on:
push:
branches:
- "**" # TODO: change to "**" after testing
jobs:
ci:
name: Lint, Typecheck & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run type-check
- name: Test
run: npm run test:once