Files
time-until/.gitea/workflows/ci.yml
root 1d99c729dd
All checks were successful
CI / build (push) Successful in 14s
CI / build (pull_request) Successful in 11s
move CI workflow to .gitea and remove .github remnants
2026-03-11 21:52:45 +01:00

16 lines
290 B
YAML

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm install