Skip to content

added App.test.js

added App.test.js #5

Workflow file for this run

name: CI/CD
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install Dependencies
run: npm i
- name: Test
run: npm test
- name: Build
run: npm run build --if-present
- name: Deploy with gh-pages
run: npm run deploy