Skip to content

bump version to 2.1.5 and update setItems signature to include event #36

bump version to 2.1.5 and update setItems signature to include event

bump version to 2.1.5 and update setItems signature to include event #36

Workflow file for this run

name: Build and Test
on: [push]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
node-version: [16.x, 17.x]
operating-system: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: pnpm/action-setup@v2.2.2
- name: Setup Node.js environment ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test
env:
CI: true
- name: Typecheck
run: pnpm run typecheck