Skip to content

ci: fix permissions for sticky-pull-request-comment #331

ci: fix permissions for sticky-pull-request-comment

ci: fix permissions for sticky-pull-request-comment #331

Workflow file for this run

name: 'Test'
on:
pull_request:
types:
- opened
- reopened
- synchronize
permissions:
contents: read
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: yarn install
- run: yarn lint && yarn test
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Check if `dist/` has been modified.
run: |
set -eux
if [ $(git diff origin/main --name-only -- 'dist/**' | wc -l) -gt 0 ]
then
echo "Please do not update 'dist/'. CI will update it automatically on merge."
exit 1
fi