Skip to content

docs updated

docs updated #244

Workflow file for this run

on:
pull_request:
branches:
- main
name: pull_request_test
jobs:
pull_request_test:
name: pull_request_test
runs-on: ubuntu-latest
if: ${{ !contains(github.event.pull_request.title, 'skip ci') }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: NPM Install
run: npm install --force
- name: Pretty
run: npm run-script prettier-check
- name: Build
run: npm run-script build