This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
chore(deps): update dependency react-router-dom to v6.25.0 #411
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: Format and Lint | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
format_and_lint: | |
name: Format and Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/install/cache | |
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} | |
restore-keys: ${{ runner.os }}-bun- | |
- name: Install | |
run: bun install | |
- name: Format | |
run: bun format | |
- name: Lint | |
run: bun lint |