Skip to content

Update README.md

Update README.md #19

Workflow file for this run

name: Test
on: [push]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
test:
name: Test
# Prevents action from creating a PR on forks
if: github.repository == 'apollographql/graphql-testing-library'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install pnpm and dependencies
uses: pnpm/action-setup@v4
with:
version: 9
run_install: true
- name: Install Playwright
run: npx playwright install --with-deps
- name: Check types
run: pnpm run type-check
- name: Lint
run: pnpm run lint
- name: Run Jest tests
run: pnpm run test
- name: Serve Storybook and run tests
run: pnpm run build-and-test-storybook