build(deps): Upgrade traefik:v3.0 Docker digest to 916a4a8 #3416
Workflow file for this run
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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0 | |
with: | |
version: latest | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # 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 |