Merge pull request #109 from drdreo/108-missing-export #94
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '@ngneat/cashew' | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Npm install | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'npm' | |
- run: npm i | |
- name: Test | |
run: npm run test:lib | |
- name: Build | |
run: npm run build:lib | |
- name: Build Playground | |
run: npm run build |