Skip to content

chore(deps-dev): bump supertest and @types/supertest #543

chore(deps-dev): bump supertest and @types/supertest

chore(deps-dev): bump supertest and @types/supertest #543

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 }}