Bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.12.2 #337
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Remove node_modules and package-lock.json | |
run: | | |
rm -rf node_modules | |
rm -f package-lock.json | |
- name: Install dependencies | |
run: npm install | |
- name: Run lint, build, and types | |
run: npm run ci |