Skip to content

v1.7.14

v1.7.14 #1345

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.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: yarn install, build, and test
run: |
echo '[]' > src/doc/components/Esdoc/index.json
npm install -g yarn
yarn install
yarn lint
yarn test
yarn build
env:
CI: true