Skip to content

Merge pull request #47 from twilio-labs/snyk-fix-b7306370d5a878c5fb3f… #5

Merge pull request #47 from twilio-labs/snyk-fix-b7306370d5a878c5fb3f…

Merge pull request #47 from twilio-labs/snyk-fix-b7306370d5a878c5fb3f… #5

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@v2
with:
ref: master
- name: Package
run: |
npm ci
npm run test
- name: Commit
run: |
git config --global user.name "GitHub Actions"
git add dist/
git add node_modules/
git commit -m "chore: Update dist" || echo "No changes to commit"
git push origin HEAD:master