Skip to content

SDK Documentation Upgrade (v0.2.2 Parity) #371

SDK Documentation Upgrade (v0.2.2 Parity)

SDK Documentation Upgrade (v0.2.2 Parity) #371

Workflow file for this run

name: CI (Continuous Integration)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
frontend-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install Dependencies
run: npm ci
- name: Run Linting
run: npm run lint --workspace=web-dashboard
dashboard-api-tests:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install Dependencies
run: npm ci
- name: Run Dashboard API Tests
run: npm run test --workspace=dashboard-api