Remove mobx and legacy version #110
Workflow file for this run
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: pull_request | |
jobs: | |
test: | |
name: Test and build | |
runs-on: ubuntu-latest | |
steps: | |
# Checks out a copy of your repository. | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# Builds code and runs the tests using Bazelisk. | |
- name: Run tests | |
uses: docker://mattinsler/bazelisk:latest | |
with: | |
args: bazel test ... |