Skip to content

Update @babel/core requirement from >=7.22.15 to >=7.22.20 #453

Update @babel/core requirement from >=7.22.15 to >=7.22.20

Update @babel/core requirement from >=7.22.15 to >=7.22.20 #453

Workflow file for this run

name: Build
on:
push:
branches: [ beta ]
pull_request:
branches: [ beta ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16.x, 17.x, 18.x, 20.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