Skip to content

Add testing and GitHub actions #14

Add testing and GitHub actions

Add testing and GitHub actions #14

Workflow file for this run

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
- name: Install and build (covid19)
run: |
cd app/assets/javascripts/covid19
yarn install
yarn localize
yarn build