Skip to content

Completed more features and Updated README #7

Completed more features and Updated README

Completed more features and Updated README #7

Workflow file for this run

name: Jest Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Turborepo Test
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Setup Node environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn
# - name: Build
# run: yarn build
- name: Run test
run: yarn test