Update actions/checkout action to v5 (#336) #889
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: Lint and Check Types | |
on: push | |
jobs: | |
lint-and-check-types: | |
name: Lint and Check Types | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'pnpm' | |
- name: Install deps (with cache) | |
run: pnpm install | |
- run: pnpm eslint . --max-warnings 0 | |
- run: pnpm tsc |