Skip to content

update cloudbuild configuration to use specific Docker image tag for … #26

update cloudbuild configuration to use specific Docker image tag for …

update cloudbuild configuration to use specific Docker image tag for … #26

Workflow file for this run

name: Lint
on: push
jobs:
lint:
name: Lint Project
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
registry-url: 'https://npm.pkg.github.com'
- name: Install Node.js dependencies
run: npm ci
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
eslint_extensions: ts
prettier: true
prettier_extensions: ts
continue_on_error: false