Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

docs: update README.md file #716

docs: update README.md file

docs: update README.md file #716

Workflow file for this run

name: test
on:
push:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14]
name: Node v${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Yarn install
run: yarn --pure-lockfile
- name: eslint:check
run: yarn eslint:check
- name: Unit tests
run: yarn test
- name: Stylelint
run: yarn stylelint
- name: Build
run: yarn build