Skip to content

πŸ€– Bump @eslint/js from 9.16.0 to 9.17.0 #182

πŸ€– Bump @eslint/js from 9.16.0 to 9.17.0

πŸ€– Bump @eslint/js from 9.16.0 to 9.17.0 #182

Workflow file for this run

name: βœ… Validate main
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: 🚦 Checks
runs-on: ubuntu-latest
env:
TZ: "America/Chicago"
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: npm
cache-dependency-path: ./package.json
node-version: 20.11.0
- name: Install dependencies
run: npm install
- name: πŸ”¬ ESLint
run: npm run lint
- name: πŸ’… Prettier
run: npm run prettier:check
- name: πŸ‘Ύ TypeScript
run: npm run typecheck
- name: πŸ§ͺ Vitest
run: npm test