Skip to content

chore(deps): bump node from 22.8.0-slim to 23.0.0-slim #154

chore(deps): bump node from 22.8.0-slim to 23.0.0-slim

chore(deps): bump node from 22.8.0-slim to 23.0.0-slim #154

Workflow file for this run

name: Lint
permissions: read-all
on:
push:
branches:
- main
pull_request:
jobs:
azlint:
name: AZLint
runs-on: ubuntu-latest
container:
image: matejkosiarcik/azlint:0.6.6
options: --user root
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0 # Full git history is needed to get a proper list of changed files
- name: Run AZLint
run: |
git config --global --add safe.directory "$PWD"
if [ "$GITHUB_REF_NAME" = main ]; then
azlint
else
azlint --only-changed
fi