vscode/.github/workflows/no-yarn-lock-changes.yml

14 lines
403 B
YAML
Raw Normal View History

2021-02-02 15:50:55 +00:00
name: "Prevent yarn.lock changes in PRs"
on: [pull_request]
jobs:
main:
runs-on: ubuntu-latest
steps:
- id: file_changes
uses: trilom/file-changes-action@v1.2.4
- name: Check for yarn.lock changes
run: |
cat $HOME/files.json | jq -e '.[] | test("yarn\\.lock$") | not' \
|| (echo "Changes to yarn.lock files aren't allowed in PRs." && exit 1)