Skip to content

feat: add test history page UI #16

feat: add test history page UI

feat: add test history page UI #16

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '20.11.1'
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Run Linting
run: npm run lint
# - name: Run Tests
# run: npm test
- name: Build Project
run: npm run build