Skip to content

bind) Make ko.applyBindings works in HTML-Shadow-DOM-Elements #59

bind) Make ko.applyBindings works in HTML-Shadow-DOM-Elements

bind) Make ko.applyBindings works in HTML-Shadow-DOM-Elements #59

Workflow file for this run

# Workflow for checking eslint compile errors
name: Check eslint
on:
# Runs for every pull-requests created
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run eslint
run: make eslint