-
-
Notifications
You must be signed in to change notification settings - Fork 41
49 lines (41 loc) · 997 Bytes
/
helipopper.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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@v5
with:
browser: chrome
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