Skip to content

feat(playwright): setup #20

feat(playwright): setup

feat(playwright): setup #20

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
setup:
uses: ./.github/workflows/setup-workspace.yaml

Check failure on line 11 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. In .github/workflows/ci.yaml (Line: 11, Col: 11): Error from called workflow prests/hono-remix-template/.github/workflows/setup-workspace.yaml@9e49ab6b7fa0bd25d950b12c2bffa4595a42dba2 (Line: 7, Col: 9): Required property is missing: value
linting:
name: Run Linting, Formatting, and Typecheck
runs-on: ubuntu-latest
needs: setup
steps:
- uses: ./.github/actions/setup-job
- name: Lint Check
run: pnpm run lint
- name: Format Check
run: pnpm run format:verify
- name: Typecheck
run: pnpm run typecheck
Tests:
name: Run Unit Tests
runs-on: ubuntu-latest
needs: setup
steps:
- uses: ./.github/actions/setup-job
- name: Unit Tests
run: pnpm run test