This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
chore(deps): update typescript-eslint monorepo to v6 (major) #770
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: Continious Integration | |
on: | |
pull_request: | |
branches: ['main'] | |
jobs: | |
verify: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: './package.json' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run Build | |
run: pnpm build | |
- name: Run Checks | |
run: pnpm check | |
- name: Run Lint | |
run: pnpm lint |