Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Update README.md

Update README.md #169

Workflow file for this run

name: kubenode CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: argparser CI
run: cd argparser && npm install && npm test
env:
CI: true
- name: cli CI
run: cd cli && npm install && npm test
env:
CI: true
- name: controller-runtime CI
run: cd controller-runtime && npm install && npm test
env:
CI: true
- name: crdgen CI
run: cd crdgen && npm install && npm test
env:
CI: true
- name: extension-server CI
run: cd extension-server && npm install && npm test
env:
CI: true
- name: reference CI
run: cd reference && npm install && npm test
env:
CI: true