Skip to content

Editor completely finished; all core markdown features working as intended. #53

Editor completely finished; all core markdown features working as intended.

Editor completely finished; all core markdown features working as intended. #53

Workflow file for this run

name: React Testing
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.9'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
env:
CI: true