Skip to content

Fix typo in Persian README description #14

Fix typo in Persian README description

Fix typo in Persian README description #14

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
with:
version: 10.15.0
- uses: actions/setup-node@v7
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm typecheck
- run: pnpm test
- run: pnpm build
- run: pnpm audit --prod --audit-level high
e2e:
runs-on: ubuntu-latest
timeout-minutes: 30
needs: quality
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
with:
version: 10.15.0
- uses: actions/setup-node@v7
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm --filter @moduqr/web build
- run: pnpm --filter @moduqr/web exec playwright install --with-deps chromium firefox webkit
- run: pnpm --filter @moduqr/web test:e2e
env:
CI: 'true'