validate yarn.lock changes in PRs

This commit is contained in:
João Moreno 2021-02-02 16:50:55 +01:00
parent 1a016a67b2
commit 76e6174c90
No known key found for this signature in database
GPG key ID: 896B853774D1A575

View file

@ -0,0 +1,13 @@
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)