Skip to content

docs: add sponsership section #47

docs: add sponsership section

docs: add sponsership section #47

name: '@ngneat/content-loader'
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-18.04
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
id: npm-cache
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-npm
- uses: actions/setup-node@v1
with:
node-version: 14.15
- name: Install dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
env:
HUSKY_SKIP_INSTALL: 'true'
run: npm ci
- name: Build library
run: npm run build:lib
- name: Build integration app
run: npm run build:integration