Skip to content

chore(deps-dev): bump supertest from 6.3.4 to 7.0.0 #618

chore(deps-dev): bump supertest from 6.3.4 to 7.0.0

chore(deps-dev): bump supertest from 6.3.4 to 7.0.0 #618

Workflow file for this run

---
name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/iron
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Run tests
run: npm test
- name: Semantic release dry-run
run: npm run semantic-release -- --dry-run
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}