Skip to content

Update README.md

Update README.md #3997

Workflow file for this run

name: Unit Tests
on:
push:
branches-ignore:
- gh-pages
jobs:
Test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v2
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 16
- name: Restore CI Cache
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn --ignore-scripts
- name: Build Utils and Lint config
run: yarn tsc -b packages/utils/src packages/stylelint-config
- name: Run Unit Tests
run: yarn test