Skip to content

Improvements to docs copy #2725

Improvements to docs copy

Improvements to docs copy #2725

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
CI:
name: CI_Node_${{ matrix.version }}
runs-on: ubuntu-latest
strategy:
matrix:
version: [14, 16, 18, 20]
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
- name: Install
# TODO remove the --ignore-engines flag when node 14 support is dropped
run: yarn install --ignore-engines
- name: Run tests
run: yarn test
- name: Run linting
run: yarn lint
- name: Build packages
run: yarn build