37 fix rimless library export (#38) #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test and build when pushing to a branch | |
on: push | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install monorepo dependencies | |
run: npm ci | |
- name: build monorepo packages | |
run: npm run build | |
- name: test monorepo | |
run: npm run test |