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

MIGRATED to Codeberg #16

MIGRATED to Codeberg

MIGRATED to Codeberg #16

Workflow file for this run

name: CI Test
on:
pull_request:
branches:
- "*"
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install packages
run: npm install
- name: Run tests
run: npm run test