remove eslint from gh actions

This commit is contained in:
Cory LaViska
2024-12-16 10:39:25 -05:00
parent ee0167a059
commit abbfd9b43d
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run prettier && npm run lint
run: npm run prettier
- name: Build
run: npm run build
- name: Install Playwright

View File

@@ -27,7 +27,7 @@ jobs:
run: npm ci
# Just lint here too. Save some GH Action minutes and not need to use "depends_on" or anything.
- name: Lint
run: npm run prettier && npm run lint
run: npm run prettier
- name: Build
run: npm run build