Skip to content

GitHub CI build testing #53

GitHub CI build testing

GitHub CI build testing #53

Workflow file for this run

name: AgensGraphViewer build
on:
push:
branches: [ main, testing-branch ]
pull_request:
branches: [ main, testing-branch ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install --global yarn
- run: cd backend && yarn install && yarn run build
- run: cd frontend && yarn install && yarn run build
env:
CI: false