Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
6

Configure Feed

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

Consolidate tests and install chromium

Grace Kind (Feb 5, 2026, 4:48 PM -0600) 95ad0ca2 cb900e06

+27 -32
-16
.github/workflows/e2e_tests.yaml
··· 1 - name: E2E Tests 2 - 3 - on: [push] 4 - 5 - jobs: 6 - build: 7 - runs-on: ubuntu-latest 8 - 9 - steps: 10 - - uses: actions/checkout@v5 11 - - name: Use Node.js 12 - uses: actions/setup-node@v4 13 - with: 14 - node-version: "24.x" 15 - - run: npm install 16 - - run: npm run test:e2e
+27
.github/workflows/tests.yaml
··· 1 + name: Tests 2 + 3 + on: [push] 4 + 5 + jobs: 6 + unit: 7 + runs-on: ubuntu-latest 8 + steps: 9 + - uses: actions/checkout@v5 10 + - name: Use Node.js 11 + uses: actions/setup-node@v4 12 + with: 13 + node-version: "24.x" 14 + - run: npm install 15 + - run: npm run test:unit 16 + 17 + e2e: 18 + runs-on: ubuntu-latest 19 + steps: 20 + - uses: actions/checkout@v5 21 + - name: Use Node.js 22 + uses: actions/setup-node@v4 23 + with: 24 + node-version: "24.x" 25 + - run: npm install 26 + - run: npx playwright install --with-deps chromium 27 + - run: npm run test:e2e
-16
.github/workflows/unit_tests.yaml
··· 1 - name: Unit Tests 2 - 3 - on: [push] 4 - 5 - jobs: 6 - build: 7 - runs-on: ubuntu-latest 8 - 9 - steps: 10 - - uses: actions/checkout@v5 11 - - name: Use Node.js 12 - uses: actions/setup-node@v4 13 - with: 14 - node-version: "24.x" 15 - - run: npm install 16 - - run: npm run test:unit