Skip to content

improvement: bind hooks' callbacks to a scope (#82) #177

improvement: bind hooks' callbacks to a scope (#82)

improvement: bind hooks' callbacks to a scope (#82) #177

Workflow file for this run

name: Test Package
on: [push]
jobs:
test-package:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Run tests
run: pnpm test
env:
CI: true
- name: Validate package
run: pnpm validate:dist