Skip to content

Mohin/fix UI issues #34

Mohin/fix UI issues

Mohin/fix UI issues #34

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependency
run: npm ci
- name: Formatting check
run: npx prettier --check "src/"
- name: Playgourd build check
run: npm run build
- name: Library build check
run: npm run build:lib
- name: Docs build check
run: npm run docs:build