feat: (LAR-83) improve SEO, remove unecessary links #745
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pest: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: 👀 Checkout | |
uses: actions/checkout@v4 | |
- name: 🪄 Setup | |
uses: ./.github/actions/setup | |
- name: 🔮 Install Composer Dependencies | |
run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
- name: 🧶 Install Node Dependencies | |
run: yarn install --frozen-lockfile --no-progress | |
- name: 🧱 Build JS Dependencies | |
run: yarn build | |
- name: 🕵️♂️ Run Pest Tests | |
run: composer test:pest |