Update dependency upgrades - non-major #665
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: Lint, Check Types, Build | |
on: push | |
jobs: | |
lint-and-check-types-and-build: | |
name: Lint, Check Types, Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 'latest' | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'pnpm' | |
- run: pnpm install | |
- run: pnpm eslint . --max-warnings 0 | |
- run: pnpm tsc | |
- run: pnpm build |