Skip to content

feat(!): add support for newListener and removeListener (#5) #45

feat(!): add support for newListener and removeListener (#5)

feat(!): add support for newListener and removeListener (#5) #45

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build
on:
push:
branches:
- "main"
paths-ignore:
- "**.md"
tags-ignore:
- "*"
pull_request:
branches:
- "main"
paths-ignore:
- "**.md"
defaults:
run:
shell: bash
jobs:
Build:
runs-on: "ubuntu-latest"
steps:
- name: "📥 Checkout"
uses: actions/checkout@v4
- name: "🗃️ Setup Node"
uses: actions/setup-node@v4
with:
node-version: 20
- name: "📐 Install dependencies"
run: npm ci
- name: "🧬 Type Check"
run: npm run type:check
- name: "🏗️ Build"
run: npm run build
- name: "🖌️ Lint"
run: npm run lint
- name: "🧪 Test"
run: npm run test