fp/.gitea/workflows/tests.yaml
CJ_Clippy dc1cd270e0
Some checks failed
ci / test (push) Failing after 1m47s
use ci test
2025-08-15 03:50:57 -08:00

33 lines
528 B
YAML

name: ci
on:
pull_request:
push:
branches:
- "main"
schedule:
- cron: "6 */12 * * *"
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: services/our
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test