Skip to content

Implements a basic reference system #372

Implements a basic reference system

Implements a basic reference system #372

Workflow file for this run

name: nodejs CI
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
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@v1
with:
node-version: ${{ matrix.node-version }}
- name: "run nodejs frontend tests"
run: |
set -e
cd "$GITHUB_WORKSPACE"/frontend
npm ci
npm run test-docker
npm run lint