Features: Continous deployment of Pull Requests and cleanup of closed PR deployed links #1729
Workflow file for this run
This file contains hidden or 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: Linting and formatting on PR | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
Continuous-Integration: | |
name: Performs linting, formatting on the application | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@v3 | |
- name: Setup pnpm | |
run: npm install -g pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Run linting check | |
run: pnpm run lint:check | |
- name: Check formatting | |
run: pnpm run format:check |