Skip to content

📝 adds linting commands and github actions notes to README #5

📝 adds linting commands and github actions notes to README

📝 adds linting commands and github actions notes to README #5

Workflow file for this run

name: React Tests
on: push
env:
NODE_OPTIONS: --max_old_space_size=4096
jobs:
react_test:
name: React Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "21"
- name: Restore workspace cache
uses: actions/cache@v3
with:
path: "**/node_modules"
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn
- name: Run unit tests
run: yarn test