Skip to content

test: use Astro Node API instead of node:child_process #173

test: use Astro Node API instead of node:child_process

test: use Astro Node API instead of node:child_process #173

Workflow file for this run

name: CI
env:
PLAYWRIGHT_BROWSERS_PATH: ${{ github.workspace }}/.cache/ms-playwright
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-and-cache
- name: Install
run: pnpm install
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
- name: Test
run: |
pnpm dlx playwright install chromium
pnpm test