The current app at root of repo is for single frictionless dataset. Should be in its own example so we have space going forward for multiple example and for root to have core portal.js code. * Also refactor its README (moved from root) to reflect it is just an example * Move design content from the root README.md into DESIGN.md * Stub a new root README.md based largely on examples/catalog/README.md
22 lines
402 B
YAML
22 lines
402 B
YAML
name: dataset-frictionless
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
jest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install modules
|
|
run: |
|
|
cd examples/dataset-frictionless
|
|
yarn
|
|
|
|
- name: Run tests
|
|
run: |
|
|
cd examples/dataset-frictionless
|
|
yarn test -u
|