Skip to content

chore(deps): update dependency supertest to ^7.2.2 #495

chore(deps): update dependency supertest to ^7.2.2

chore(deps): update dependency supertest to ^7.2.2 #495

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-x64-small
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: 'false'
- name: Set up Node.js
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # 6.1.0
with:
node-version: 25.x
package-manager-cache: false
- name: Install modules
run: yarn
- name: Lint code base
run: yarn lint
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-x64-small
node: [20.x, 22.x, 24.x, 25.x]
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: 'false'
- name: Set up Node.js
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # 6.1.0
with:
node-version: ${{ matrix.node }}
package-manager-cache: false
- name: Install modules
run: yarn
- name: Run build
run: yarn build
- name: Run tests
run: yarn test