Skip to content

FAQ addition, Guides/Installation adjustments, website config improvements and Extension List feature additions #46

FAQ addition, Guides/Installation adjustments, website config improvements and Extension List feature additions

FAQ addition, Guides/Installation adjustments, website config improvements and Extension List feature additions #46

Workflow file for this run

name: Test
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: npm test