build(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.2.0 #430
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: | |
jobs: | |
test: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
integration: [gatsby, next, remix] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup-workflow | |
- name: Build | |
run: | | |
yarn workspace tailwind-compose clean | |
yarn workspace tailwind-compose build | |
- name: Run Integration Tests | |
run: | | |
yarn cypress install | |
yarn e2e:${{ matrix.integration }} |