Skip to content

Merge pull request #132 from kddejong/fix/issue/130 #90

Merge pull request #132 from kddejong/fix/issue/130

Merge pull request #132 from kddejong/fix/issue/130 #90

Workflow file for this run

on:
push:
branches:
- master
name: Package
jobs:
check:
name: Package distribution file
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: master
- name: Package
run: |
npm ci
npm test
npm run all
- name: Commit
run: |
git config --global user.name "GitHub Actions"
git add dist/
git commit -m "(chore) updating dist" || echo "No changes to commit"
git push origin HEAD:master