Skip to content

chore(deps): bump graphql from 16.8.1 to 16.10.0 #37

chore(deps): bump graphql from 16.8.1 to 16.10.0

chore(deps): bump graphql from 16.8.1 to 16.10.0 #37

name: Integration Tests
on: [pull_request, workflow_dispatch]
jobs:
test:
name: Integration Tests
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Check out Code
uses: actions/checkout@v4
- name: Install Dependencies
run: yarn install --ignore-engines
- name: Install Playwright
run: yarn playwright install --with-deps
- name: Integration Tests
run: yarn e2e
- name: Generate Coverage Report
run: yarn coverage-report
- name: Upload Test Coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV }}