Skip to content

πŸ“š Bump esbuild from 0.21.1 to 0.21.2 in the dependencies group #338

πŸ“š Bump esbuild from 0.21.1 to 0.21.2 in the dependencies group

πŸ“š Bump esbuild from 0.21.1 to 0.21.2 in the dependencies group #338

Workflow file for this run

name: "Lint"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
name: Make sure the code adheres to the XO coding standard.
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '21'
cache: 'npm'
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci
- name: Run linter
uses: wearerequired/lint-action@v2
with:
auto_fix: true
xo: true
commit_message: ":sparkles: Fix code style issues with ${linter}"