Skip to content

✨ feat: support with Zustand 5 #60

✨ feat: support with Zustand 5

✨ feat: support with Zustand 5 #60

Workflow file for this run

name: use-broadcast-ts basic workflow
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Creating Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Caching the modules
uses: actions/cache@v3
env:
cache-name: node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Installing dependencies
run: npm install
- name: Running the tests
run: npm run test