Skip to content

feat: switch to signal inputs #267

feat: switch to signal inputs

feat: switch to signal inputs #267

Workflow file for this run

name: '@ngneat/helipopper'
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Npm install
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
env:
HUSKY_SKIP_INSTALL: 'true'
- run: npm i
- name: Build playground app in production mode
run: npm run build:playground
- uses: cypress-io/github-action@v6
with:
browser: chrome
start: npm run serve:playground:static
wait-on: http://localhost:4200
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Npm install
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
env:
HUSKY_SKIP_INSTALL: 'true'
- run: npm i
- name: Build library
run: npm run build:lib
- name: Build playground
run: npm run build