Skip to content

Added multiple files validations support and eslint github action #1

Added multiple files validations support and eslint github action

Added multiple files validations support and eslint github action #1

Workflow file for this run

name: Lint
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: tests with Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: |
yarn install --silent --non-interactive
yarn lint