Skip to content

tech(base): added the easy, medium, hard questions to data directory #1

tech(base): added the easy, medium, hard questions to data directory

tech(base): added the easy, medium, hard questions to data directory #1

Workflow file for this run

name: Deploy TestMate
on:
push:
branches:
- main # Change this to your default branch if different
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18' # Specify Node.js version 18
- name: Install dependencies
run: npm install
- name: Build the application
run: npm run build
- name: Deploy to Vercel
uses: amondnet/[email protected]
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}