Update node:23-alpine Docker digest to c7f1c73 #508
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
name: Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ['*'] | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build_docker: | |
runs-on: ubuntu-24.04 | |
name: Build & publish docker image | |
steps: | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.11' | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: npm ci --cache .npm --prefer-offline | |
- name: prettier-check | |
run: npm run prettier-check | |
- name: lint | |
run: npm run lint -- --quiet |