charliewilco / reubin

An RSS service for doomscrollers 🛰📡📰
reubin-site.vercel.app
Other
0 stars 1 forks source link

New Packages #19

Closed charliewilco closed 1 year ago

charliewilco commented 1 year ago

adding:

vercel[bot] commented 1 year ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
reubin ✅ Ready (Inspect) Visit Preview Jan 14, 2023 at 7:09AM (UTC)
charliewilco commented 1 year ago

removing e2e workflow for now. something is causing the signin.spec.ts test to crash.

name: E2E Tests
on:
  push:
    branches: [main]
  pull_request:
    branches: [main]
jobs:
  e2e:
    timeout-minutes: 60
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: 18

      - name: Install dependencies
        run: npm ci
      - name: Generate Types
        run: npm run generate && npx prisma generate --schema apps/graphql/prisma/schema.prisma
      - name: Build
        run: npm run build
      - name: Install Playwright Browsers
        run: npm run deps --workspace=@reubin/e2e
      - name: Run Playwright tests
        run: npm test --workspace=@reubin/e2e
      - uses: actions/upload-artifact@v3
        if: always()
        with:
          name: playwright-report
          path: e2e/playwright-report/
          retention-days: 30