Skip to content

chore(deps-dev): bump eslint from 8.57.1 to 10.6.0 #2132

chore(deps-dev): bump eslint from 8.57.1 to 10.6.0

chore(deps-dev): bump eslint from 8.57.1 to 10.6.0 #2132

Workflow file for this run

name: Build
on:
push:
branches:
- '!production'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "22.x"
- run: corepack enable
- run: npm install
- run: touch .env
- run: npm run build
env:
CI: true
static-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "22.x"
- run: corepack enable
- run: npm install
- run: npm run eslint
- run: npm run prettier-check