Skip to content

Enhance GitHub Actions workflows and package configuration #29

Enhance GitHub Actions workflows and package configuration

Enhance GitHub Actions workflows and package configuration #29

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install Dependencies
run: npm install