Bump the npm_and_yarn group across 1 directory with 9 updates #70
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
# This workflow will do a clean install of SchedViz dependencies, build, and test the source code. | |
name: Build and Test SchedViz | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Install dependencies | |
run: yarn install | |
- name: Build the server | |
run: yarn bazel build server | |
- name: Run tests | |
run: yarn bazel test //... |