fix(link): drop use-link hook as react-aria-components handles client side routing internally #5
Workflow file for this run
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: '🔀 Pull Request' | |
on: | |
pull_request_target: | |
branches: | |
- main | |
concurrency: | |
group: pull-request-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
pull: | |
name: '👷️ CI' | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: '🐙️ Checkout' | |
uses: actions/checkout@v4 | |
- name: '💽️ Setup' | |
uses: ./.github/actions/setup | |
- name: '📦 Install' | |
uses: ./.github/actions/install | |
- name: '🔺️ Cache' | |
uses: ./.github/actions/cache | |
- name: '🏗️ Build' | |
uses: ./.github/actions/build | |
with: | |
COMMAND: 'build' | |
- name: '🚨️ Lint' | |
uses: ./.github/actions/lint | |
- name: '🦺 Type Check' | |
uses: ./.github/actions/type-check | |
with: | |
COMMAND: 'type-check' | |
- name: '🧪 Test' | |
uses: ./.github/actions/test | |
with: | |
COMMAND: 'test' |