Skip to content

test nodejs matrix

test nodejs matrix #53

Workflow file for this run

name: Tests
on:
push:
branches:
- 'master/**'
- 'feature/**'
- 'documentation/**'
- 'improvement/**'
- 'bugfix/**'
- 'w/**'
- 'q/**'
- 'hotfix/**'
- 'task/**'
- 'release/**'
- 'main'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- '20'
- '22'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install deps
run: sudo apt-get update -q
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install Yarn
run: npm install -g yarn
- name: install dependencies
run: yarn install --frozen-lockfile
- name: run lint
run: yarn run eslint