This repository has been archived by the owner on Aug 4, 2024. It is now read-only.
Bump serde from 1.0.171 to 1.0.179 in /src-tauri #206
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: | |
branches: ["main", "dev"] | |
jobs: | |
lint_and_prettify: | |
name: ESLint And Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2.4.2 | |
- name: Setup Node | |
uses: actions/setup-node@v3.3.0 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2.2.2 | |
with: | |
version: 6.11.0 | |
run_install: true | |
- name: Run ESLint | |
run: pnpm lint | |
- name: Run Prettier | |
run: pnpx prettier --check . |