Skip to content

Coming Soon: changes dates from 22nd to 23rd #42

Coming Soon: changes dates from 22nd to 23rd

Coming Soon: changes dates from 22nd to 23rd #42

Workflow file for this run

name: Lint and Format
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npx eslint . --ext .js,.jsx,.ts,.tsx
- name: Run Prettier check
run: npx prettier --check .