Skip to content

Added Cachy OS as Computer OS #19

Added Cachy OS as Computer OS

Added Cachy OS as Computer OS #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install dependencies
run: npm ci
- name: Install Playwright browser
run: npx playwright install --with-deps chromium
- name: Run checks
run: npm run check