Skip to content

Delete .github/workflows/super-linter.yml #721

Delete .github/workflows/super-linter.yml

Delete .github/workflows/super-linter.yml #721

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: [18.x, 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: Run ESLint
run: npm run lint