Skip to content

Merge pull request #107 from ngneat/feature/class-only #7

Merge pull request #107 from ngneat/feature/class-only

Merge pull request #107 from ngneat/feature/class-only #7

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Npm install
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm i
- name: Run build
run: npm run build:lib
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Npm install
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm i
- name: Run tests
run: npm run test:lib:headless