Skip to content

add react typescript template. #10

add react typescript template.

add react typescript template. #10

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- uses: actions/checkout@v4
- name: Setup Node 20
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run build
- run: npm run test