Skip to content

build(deps-dev): bump eslint from 7.32.0 to 9.11.0 #118

build(deps-dev): bump eslint from 7.32.0 to 9.11.0

build(deps-dev): bump eslint from 7.32.0 to 9.11.0 #118

name: Tests
on:
pull_request:
branches: [master, main]
push:
branches: [master, main]
jobs:
build:
strategy:
matrix:
node: [20.x]
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Dependencies
run: npm ci
- name: Lint the code
run: npm run lint
- name: Run tests
run: npm run test