Skip to content

Allow to open fast post #299

Allow to open fast post

Allow to open fast post #299

Workflow file for this run

name: Linters
on:
push:
branches:
- main
paths-ignore:
- '*.md'
- '.github/*.yml'
pull_request:
paths-ignore:
- '*.md'
- '.github/*.yml'
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: pnpm run /^test:/
env:
FORCE_COLOR: 1