Skip to content

build(deps): Upgrade docker/build-push-action digest to fdf7f43 #2578

build(deps): Upgrade docker/build-push-action digest to fdf7f43

build(deps): Upgrade docker/build-push-action digest to fdf7f43 #2578

Workflow file for this run

# 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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0
with:
version: latest
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
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