chore(deps): update typescript-eslint monorepo to v8 (major) #766
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: Run Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Cache pnpm modules | |
uses: actions/[email protected] | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- uses: pnpm/[email protected] | |
with: | |
run_install: true | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version-file: .node-version | |
cache: "pnpm" | |
- name: Run Test | |
run: pnpm test | |
- name: Build for lint | |
run: pnpm build:chrome |