Skip to content

Removing CRA dependencies #26

Removing CRA dependencies

Removing CRA dependencies #26

Workflow file for this run

name: Build and test
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x
registry-url: https://registry.npmjs.org/
- name: Install lib dependencies
run: cd lib && npm install
- name: Build library
run: cd lib && npm run build