docs: Start mesharrow document conventions #5710
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 | |
# 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 build | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |