Skip to content

Bump eslint-plugin-promise from 6.1.1 to 6.4.0 #666

Bump eslint-plugin-promise from 6.1.1 to 6.4.0

Bump eslint-plugin-promise from 6.1.1 to 6.4.0 #666

Workflow file for this run

on:
push:
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
name: Test Node.js
jobs:
test:
name: Test on node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm run test:ci