Skip to content

Add edit challenge functionality #16

Add edit challenge functionality

Add edit challenge functionality #16

Workflow file for this run

name: CI / CD Pipeline
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
unit-tests:
runs-on: ubuntu-latest
name: bun coverage
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun i --frozen-lockfile
- name: Run Unit Tests with Coverage Report
run: bun coverage
format-files:
runs-on: ubuntu-latest
name: bun format:check
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun i --frozen-lockfile
- name: Format All Files with Prettier
run: bun format:check