Skip to content

chore(deps): update js/ts dependencies #604

chore(deps): update js/ts dependencies

chore(deps): update js/ts dependencies #604

Workflow file for this run

name: Build - Action bundle
on:
push:
paths:
- src/**
- package-lock.json
- tsconfig.json
- test/**
branches-ignore:
- renovate/**
pull_request:
types:
- opened
- synchronize
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
# Exclude in-repo PRs from running this job
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork
steps:
- name: Clone repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Setup Node.js 20
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version: 20.x
cache: npm
- name: Install npm development dependencies
run: npm ci
- name: Build action
run: npm run build
- name: Commit and push action bundle
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
with:
add: -f dist/main/index.js dist/cleanup_working_directory/index.js
message: 'chore(dist): build'
author_name: github-actions[bot]
author_email: 41898282+github-actions[bot]@users.noreply.github.com