Skip to content

Update @babel/eslint-parser requirement from ^7.24.1 to ^7.24.5 (#221) #640

Update @babel/eslint-parser requirement from ^7.24.1 to ^7.24.5 (#221)

Update @babel/eslint-parser requirement from ^7.24.1 to ^7.24.5 (#221) #640

Workflow file for this run

name: Build
on:
push:
branches: [ beta, alpha ]
pull_request:
branches: [ beta, alpha ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.1.1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm i
- name: Install ESLint
run: |
npm install eslint@8.10.0
- name: Run ESLint
run: npx eslint . --ext .js --config .eslintrc.js