Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 4 to 5. - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4...v5) --- updated-dependencies: - dependency-name: stefanzweifel/git-auto-commit-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
604 B
YAML
28 lines
604 B
YAML
name: "update dist/index.js"
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
pack:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: install dependencies
|
|
run: |
|
|
npm ci
|
|
- name: format TypeScript code
|
|
run: |
|
|
npm run format
|
|
- name: compile TypeScript code
|
|
run: |
|
|
npm run build
|
|
- name: compile TypeScript code into dist/index.js
|
|
run: |
|
|
npm run pack
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: "chore(build): automated change"
|