chore(deps): bump mongodb and mongoose #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: | |
pull_request: | |
branches: [ 'main' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18.x ] | |
name: Build and test with Node ${{ matrix.node-version }} | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# == Cache frequently built and/or with large dependencies == | |
# == Eviction policy: not accessed in over 7 days | |
# == Limit: 10 GB | |
# cache: 'npm' | |
# == Path to lock file when using mono repos == | |
# cache-dependency-path: subdir/package-lock.json | |
- name: Restore packages | |
run: npm ci -f | |
- name: Lint commit messages | |
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose | |
- name: Build package | |
run: npm run build | |
- name: Generate website | |
run: npm run generate-website | |
- name: Run tests | |
run: npm test |