Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

redirect

redirect #125

Workflow file for this run

name: CI
on: [push]
jobs:
dashboard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18.x
cache: "npm"
cache-dependency-path: dashboard/package-lock.json
- name: npm install, build, and test
run: |
npm install --prefix dashboard
npm run lint --prefix dashboard --if-present
npm run test --prefix dashboard --if-present
npm run build --prefix dashboard
env:
CI: true