Skip to content

review the text on the basic page #94

review the text on the basic page

review the text on the basic page #94

Workflow file for this run

name: Tests
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Check Formatting
run: npm run format-check