Skip to content

feat(core): Improve typing and naming for DataSources #5556

feat(core): Improve typing and naming for DataSources

feat(core): Improve typing and naming for DataSources #5556

Workflow file for this run

name: test
# On every pull request, but only on push to master
on:
push:
branches:
- master
- dev
- release
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: volta-cli/action@v4
- name: Install dependencies
run: |
yarn install
- name: Build
run: |
yarn run bootstrap
- name: Run browser tests (generate coverage)
run: |
yarn run test-cover
- name: Run node tests
run: |
yarn run test-node
- name: Run lint
run: |
yarn run lint
- name: Build website
run: |
cd website ; yarn install ; yarn run build
- name: Coveralls
if: matrix.node-version == 18
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}