-
Notifications
You must be signed in to change notification settings - Fork 126
35 lines (33 loc) · 943 Bytes
/
package.yml
File metadata and controls
35 lines (33 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Package
on:
pull_request:
jobs:
build:
name: Package distribution file
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Package
run: |
npm ci
npm run build
npm run pack
- name: Commit to PR
if: github.actor == 'dependabot[bot]'
run: |
git config --global user.name "GitHub Actions"
git add dist/
git commit -m "(chore) updating dist" || echo "No changes to commit"
git push
- name: Check dist is up-to-date
if: github.actor != 'dependabot[bot]'
run: |
git diff --exit-code dist/