Skip to content

Add feed to fast posts list #285

Add feed to fast posts list

Add feed to fast posts list #285

Workflow file for this run

name: Web Tests
on:
push:
branches:
- main
paths:
- 'pnpm-lock.yaml'
- '.tool-versions'
- '.github/workflows/web.yml'
- 'core/**'
- 'web/**'
pull_request:
paths:
- 'pnpm-lock.yaml'
- '.tool-versions'
- '.github/workflows/web.yml'
- 'core/**'
- 'web/**'
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install tools from asdf config
uses: ai/asdf-cache-action@v1
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Run tests
run: cd web && pnpm test
env:
FORCE_COLOR: 1