Skip to content

Commit

Permalink
Merge pull request #140 from ngneat/ng-16
Browse files Browse the repository at this point in the history
  • Loading branch information
shaharkazaz committed Jul 9, 2023
2 parents 3c57990 + 641411a commit 8fe3675
Show file tree
Hide file tree
Showing 8 changed files with 3,603 additions and 20,851 deletions.
27 changes: 19 additions & 8 deletions .github/workflows/helipopper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,20 @@ on:
pull_request:

jobs:
build:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true

steps:
- uses: actions/checkout@v3

- name: Npm install
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'npm'
env:
HUSKY_SKIP_INSTALL: 'true'
- run: npm i

- name: Build library
run: npm run build:lib

- name: Build playground app in production mode
run: npm run build:playground

Expand All @@ -36,3 +30,20 @@ jobs:
headless: true
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
Loading

0 comments on commit 8fe3675

Please sign in to comment.