Add NavigationField + plug keyboard navigation to NavigationBoard #36
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: 'Build' | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- run: npm ci | |
- run: docker-compose -f scripts/docker-compose.yml up -d | |
- run: npm test | |
- run: docker-compose -f scripts/docker-compose.yml down | |
if: ${{ always() }} | |
- uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: './build/coverage/lcov.info' |