This repository was archived by the owner on Aug 29, 2025. It is now read-only.
docs: update README.md file #716
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |