chore(deps): bump graphql from 16.8.1 to 16.10.0 #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |