66 - Fall back to empty dimension space point if no dimensions exist #214
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: CI | |
on: [push, pull_request] | |
jobs: | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- name: Install node modules | |
run: yarn | |
- name: Bootstrap Lerna | |
run: yarn lerna bootstrap | |
- name: Run build | |
run: yarn build | |
- name: Run test | |
run: yarn test |