tonyromerohuerta/rcontrol-os

.github/workflows/ci.yml

Open

#3 opened on May 7, 2025

 (0 comments) (0 reactions) (0 assignees) (0 forks)auto 404
bugenhancementhelp wanted

Repository metrics

Stars
 (1 star)
PR merge metrics
 (No merged PRs in 30d)

Description

name: Continuous Integration

on: push: branches: - main pull_request: branches: - main

jobs: build-and-test: runs-on: ubuntu-latest

steps:
- name: Checkout code
  uses: actions/checkout@v4

- name: Set up Node.js
  uses: actions/setup-node@v3
  with:
    node-version: 16

- name: Install dependencies
  run: npm install

- name: Run tests
  run: npm test

Contributor guide