Skip to content

Bump the regular-updates group across 1 directory with 2 updates #40

Bump the regular-updates group across 1 directory with 2 updates

Bump the regular-updates group across 1 directory with 2 updates #40

Workflow file for this run

# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-ruby
# https://github.com/ruby/setup-ruby
name: Test and lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run eslint
run: npm run lint
- name: Run tests
run: npm test