build(deps): Upgrade mongo:7 Docker digest to 7ba1f8f #4743
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
# https://github.com/pnpm/action-setup | |
name: Node.js CI | |
on: | |
schedule: | |
- cron: "0 13 * * 1" | |
push: | |
branches: [main, develop, renovate/*] | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
build: | |
env: | |
ADP_TOKEN: ${{ secrets.ADP_TOKEN }} | |
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ["lts/*", "current"] | |
name: Node ${{ matrix.node }} sample | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
with: | |
version: latest | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run linter | |
run: pnpm lint | |
- name: Run tests | |
run: pnpm test |