Merge branch 'crew_2023' of github.com:pirates-ophase/pirates-ophase.β¦ #89
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: 'lint' | |
on: | |
push # every push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cloning repo | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # speeds up the checkout | |
- name: Set up pnpm (package manager) | |
uses: pnpm/action-setup@v2.2.2 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run linter | |
run: pnpm lint |