Skip to content

feat: add callback feature #5

feat: add callback feature

feat: add callback feature #5

Workflow file for this run

name: Browser Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run browser tests
run: npm run test:browser