Skip to content

Upgrade @stevenbenner/eslint-config to version 3.0 #29

Upgrade @stevenbenner/eslint-config to version 3.0

Upgrade @stevenbenner/eslint-config to version 3.0 #29

Workflow file for this run

name: Run tests
on:
- push
- pull_request
jobs:
test:
name: Node ${{matrix.node}} on ${{matrix.os}}
strategy:
matrix:
os: [ ubuntu-latest ]
node: [ 20.x ]
runs-on: ${{matrix.os}}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js ${{matrix.node}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node}}
- name: Install npm dependencies
run: npm install
- name: Test
run: npm test