Fix loaders, remove unnecessary annoying effects, separate errors #19
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: Yarn CI | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.14.0' | |
- name: Install and build (3dbio_viewer) | |
run: | | |
cd app/assets/javascripts/3dbio_viewer | |
yarn install | |
yarn build | |
yarn test:nowatch | |
- name: Install and build (covid19) | |
run: | | |
cd app/assets/javascripts/covid19 | |
yarn install | |
yarn localize | |
yarn build |