Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

bump the npm_and_yarn group across 1 directory with 17 updates #91

bump the npm_and_yarn group across 1 directory with 17 updates

bump the npm_and_yarn group across 1 directory with 17 updates #91

Workflow file for this run

name: Checking commit quality
on:
push:
pull_request:
branches:
- "!develop"
- "!pr-pages"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: test
working-directory: frontend
run: |
npm ci
npm install typescript
npm run test
- name: build frontend
working-directory: frontend
run: npm run build