Skip to content

chore(deps): bump @nestjs/schedule from 4.0.1 to 5.0.1 #620

chore(deps): bump @nestjs/schedule from 4.0.1 to 5.0.1

chore(deps): bump @nestjs/schedule from 4.0.1 to 5.0.1 #620

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