Skip to content

Bump eslint-plugin-promise from 6.4.0 to 6.6.0 #47

Bump eslint-plugin-promise from 6.4.0 to 6.6.0

Bump eslint-plugin-promise from 6.4.0 to 6.6.0 #47

Workflow file for this run

name: PR Tests
on:
pull_request:
branches: [ "main" ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
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 i -g pnpm
- run: pnpm i
- run: pnpm lint
- run: pnpm test
- name: Save Cypress Output
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: cypress-output
path: |
cypress/screenshots/
cypress/videos/
cypress/downloads/
retention-days: 7