Skip to content

fix: default size for content loading #2

fix: default size for content loading

fix: default size for content loading #2

Workflow file for this run

name: build-test
on:
push:
branches:
- master
- feature/*
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12', '14', '16' ]
name: Testing on ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install
- run: yarn test:unit