chore(deps): bump @remix-run/router from 1.20.0 to 1.21.0 #268
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: 💿 Main | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: {} | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
lint: | |
name: ⬣ ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
run_install: true | |
- name: Run Lint | |
run: pnpm lint | |
typecheck: | |
name: ʦ TypeScript | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
run_install: true | |
- name: Run Typechecking | |
run: pnpm typecheck | |
vitest: | |
name: ⚡ Vitest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
run_install: true | |
- name: Run Vitest | |
run: pnpm test |