Skip to content

docs: use new version of post.css #261

docs: use new version of post.css

docs: use new version of post.css #261

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn lerna bootstrap
- run: yarn run build:icons
- run: yarn run build:components
- run: yarn run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
name: codecov-umbrella
flags: unittests
directory: coverage
verbose: true
env:
CI: true