Skip to content
This repository was archived by the owner on Jun 30, 2026. It is now read-only.

Remove deprecated GitHub Actions workflows for package publishing #5

Remove deprecated GitHub Actions workflows for package publishing

Remove deprecated GitHub Actions workflows for package publishing #5

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Lint
run: npm run lint --if-present
- name: Test
run: npm test --if-present