the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

1name: Test 2 3on: 4 push: 5 branches: ["master"] 6 pull_request: 7 branches: ["master"] 8 9jobs: 10 build: 11 runs-on: ubuntu-latest 12 13 steps: 14 - uses: actions/checkout@v4 15 16 - name: Use the latest stable Node.js 17 uses: actions/setup-node@v4 18 with: 19 node-version-file: '.nvmrc' 20 cache: "npm" 21 22 - name: Install Dependencies 23 run: npm ci 24 25 - name: Run Test 26 run: npm run test