Skip to content

Update zizmorcore/zizmor-action action to v0.5.6 #58

Update zizmorcore/zizmor-action action to v0.5.6

Update zizmorcore/zizmor-action action to v0.5.6 #58

Workflow file for this run

name: test-testdata
permissions: {}
on:
push:
branches:
- main
paths:
- testdata/**
- .github/**
pull_request:
branches:
- main
paths:
- testdata/**
- .github/**
jobs:
test-testdata:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
cache: 'npm'
cache-dependency-path: testdata/package-lock.json
- run: npm ci
working-directory: testdata
- name: check repository is not dirty
run: "[[ -z $(git status --porcelain) ]]"
- name: show diff
if: ${{ failure() }}
run: git status --porcelain